Hello,
I have problem with graphic with increment month, the date for each bar is not correct.
The increment seems fixed of 30 days.
If I chose automatic increment, it doesn't work anymore.
Problem using increment Month
Problem using increment Month
- Attachments
-
- ProjectAxisIncrementMonth.zip
- (5.38 KiB) Downloaded 1255 times
-
- LabelBottomAxisIncrementAutomatique.png (16.55 KiB) Viewed 18596 times
-
- LabelBottomAxisIncrementMonth.png (50.3 KiB) Viewed 18597 times
Re: Problem using increment Month
Hello,
The VCL project you've attached gives me a slightly different Javascript output for me: So I assume you modified it to get that result.
The VCL project you've attached gives me a slightly different Javascript output for me: So I assume you modified it to get that result.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Problem using increment Month
Yes, i've just changed the date format.
Re: Problem using increment Month
It's there a solution for this? It's very important and urgent for us.
Re: Problem using increment Month
Hello,
You could reset the x values and the increment as follows:
You could reset the x values and the increment as follows:
Code: Select all
for (var i=0; i<Series1.data.x.length; i++) {
Series1.data.x[i] = i;
}
Chart1.axes.bottom.increment=1;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |