Range bar charts

Is it possible to do range bar charts in webix? If not, would it be possible to hack stacked bar charts to do this?

Hi,

There is not such a chart.

would it be possible to hack stacked bar charts to do this

You may try to create stacked bar chart with 4 series:

  • transparent bar that will be used represent min temperature
  • transparent bar that will contain label with min temperature (Labels are rendered in the middle of the bar. That is why you need adding series for labels)
  • bar series that will contain show max-min value
  • transparent bar with max temperature

Also you need to define $init scheme where you can add necessary value into data items.

Here is an example:

http://webix.com/snippet/9d9996f6

Thank you! Much appreciated.