Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
215
hh:mm:ss format in NumericXAxis label
posted

I have a requirement in which i need to display major tick marks on the x-axis in xamdatachart as 0,30,60,90,120

each major tickmark corresponds to the number of seconds it is (i mean 30 means 30 seconds).

I am able to achieve this by simply setting

MinumumValue =0

MaximumValue=120

Interval =30

Now i have another requirement to show the labels in format of Hh:MM:SS format using the existing values . lets say for example if the scale on x axis is now

0, 30 ,60 90 and 120 . After implemtation of the hh:mm:ss on the axis it should look loke 00:00:00, 00:00:30, 00:01:00,00:01:30 and 00:02:00

Is it possible to do it in NumericXaxis? If so how ?