Irregular Interval XY
The most popular XY charts, such as Column Chart or Line Chart, are often distributed over a category axis with equal intervals on the X-axis (or Y-axis for Bar Charts). In most cases, this is logical and fits the goals of the visualization just right. In other cases, you want to distribute the graph differently to reflect some particular dataset in the most sensible way.
Key implementation details
In this demo we emulate an irregular interval column chart by using ValueAxis
for both axes and then using StepLineSeries
for the graph. We alternate fills for the steps to get the column chart appearance.