Hi,
I'm working with a RadCartesianChart to display Value / Time.
I'm using an DateTimeContinuousAxis as bottom axis.
On this Axis I use a Major Step Unit in Days.
I display 2 series. One with value in days and one with value in hour.
The day serie is display with a simple LineSeries.
The hour serie MUST but be displayed in a RangeBarSeries to show min/max values.
In this case the Bar are to wide. My probleme is that RangeBarSerieModel generate a RadSize in function of the Axis Step size and not in function of the value covered by it.
In this case the Bar are to wide.
For example 1 step == 1 day is represented by 28px then the bar have a width of 28px.
Is it possible to change the behavior to have a bar width = (Day/hour) * StepSize = Min(1, 1/24 * 28) ?
This way the width of the bar correspond to the time the value represent.
Thanks,