Hi,
I have a composite chart (column chart + splinechart) , both series have the same number of point with the same dates, however, the column chart is not aligned with the date of the splince chart.
Do you have any explanation ?
Thanks
Hello,
Could you please try the following code:
ultraChart1.Axis.X.TickmarkStyle = AxisTickStyle.DataInterval;
Please feel free to let me know if I misunderstood you or if you have any other questions.
I wanted to know if you were able to solve your issue based on these suggestions or you still need help. Please let me know.
Hello,Could you please let me know of your whole code.
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
It works thanks a lot for your help Boris
Sorry , wrong topic, I still have the issue , actually, I have 2 X-axis , one for the columnchart , another one for the spline chart.
I hide the columnchart one so that the reason why there are this shift, but is there are a way via fillscene to realign columnchart and splinechart ?
Maybe one possible approach to achieve desired behavior could be if you are using properties:
axisX.RangeMin = 1;axisX.RangeMax = 12;axisX.RangeType = AxisRangeType.Custom;axisX.Labels.ItemFormat = AxisItemLabelFormat.DataValue;axisX.TickmarkInterval = 1;axisX.TickmarkStyle = AxisTickStyle.DataInterval;
Please take a look at the attached sample and video file, where I was able to reproduce your issue without using the properties above all, and than the fix when I`m using these properties.
Let me know if you have any questions