Hi,
I'm trying to implement an xAxisLabel element on my graph.
I'm using a TimeCoordinates element, and I would like to display these informations :
H:MM:SS.MS
here is my code :
_xTimeAxisLabel = new TimeAxisLabels(_xTimeAxis);
_xTimeAxisLabel.SetTextFont(_fontArial10);
_xTimeAxisLabel.SetColor(_axisColor);
_xTimeAxisLabel.DateCrossoverMode = ChartObj.NO_DATECROSSOVER;
_xTimeAxisLabel.SetCustomTimeFormatString("H:MM:ss.ff");
chartView.AddChartObject(_xTimeAxisLabel);
It's seems working, but when I zoom, the axe zoom but I don't show
milliseconds (for example).
And also, I would like to display a legend at xScaleMax with the unit of my axe. Am I forced to use a stringLabel (with setLocation function) or is there another solution ?
Thanks a lot