Hello, I got an Kendo ui bar chart with two series.
By default the series will display side by side.
With the "stacked: true" the 2 series will be stacked.
(first value + second value)
...
seriesDefaults: {
type: "column",
stack: true <-- make it stacked
}, ...
So far so good. What I want is the one series is above the other, an overlay in a way.
(first value - second value)
I created a fiddle.
Hope you understand what I mean :-)
Is this possible by configuration or I have to manipulate the data before get it in the chart!?