Hi,
I have succesfully implemeted the process of displaying a graph for xamarin IOS. I have an issue on the formating of the DateTime x axis. I use the following code to specify the axis, the end result should be the x axis to display months as: Jan-15 Feb-15 MAr-15 .. etc
TKChartDateTimeAxis xAxis = new TKChartDateTimeAxis();
xAxis.MajorTickIntervalUnit = TKChartDateTimeAxisIntervalUnit.Months;
this.MyChart.XAxis = xAxis;
If I do not specify anything for the format property I get as a result the names of the months on the x axis, like the attached picture, with no indcation on the respective years. I get Öct Nov Dec etc" when I really want "Oct-14 Nov -14" etc. Can you please provide some feedback on how to accomplish the expected result?
Also, in other implementations of the Chart control, like Unified Windows, you have a second option for the DateTime chart like "DateTimeContinuousAxis", which is very usefull for dispalying date data that does not fall into a serial mode, for example stock tick data. Is this option available for the xamarin IOS chart control?
Regards,
George
I have succesfully implemeted the process of displaying a graph for xamarin IOS. I have an issue on the formating of the DateTime x axis. I use the following code to specify the axis, the end result should be the x axis to display months as: Jan-15 Feb-15 MAr-15 .. etc
TKChartDateTimeAxis xAxis = new TKChartDateTimeAxis();
xAxis.MajorTickIntervalUnit = TKChartDateTimeAxisIntervalUnit.Months;
this.MyChart.XAxis = xAxis;
If I do not specify anything for the format property I get as a result the names of the months on the x axis, like the attached picture, with no indcation on the respective years. I get Öct Nov Dec etc" when I really want "Oct-14 Nov -14" etc. Can you please provide some feedback on how to accomplish the expected result?
Also, in other implementations of the Chart control, like Unified Windows, you have a second option for the DateTime chart like "DateTimeContinuousAxis", which is very usefull for dispalying date data that does not fall into a serial mode, for example stock tick data. Is this option available for the xamarin IOS chart control?
Regards,
George