This question is locked. New answers and comments are not allowed.
Hello Sir,
is possible to use DateTimeContinuousAxis as vertical axis? I have horizontal CategoricalAxis and need datetime value on vertical, but when i use this code-behind:
it doesnt work. No exception is thrown, but no values on vertical axis are displayed. With LinearAxis its working...
Thanks for any advice...
is possible to use DateTimeContinuousAxis as vertical axis? I have horizontal CategoricalAxis and need datetime value on vertical, but when i use this code-behind:
....DateTimeContinuousAxis yOsa = new DateTimeContinuousAxis();yOsa.Maximum = new DateTime(2012, 12, 30, 1, 1, 1);yOsa.Minimum = new DateTime(2012, 12, 1, 1, 1, 1);chart.VerticalAxis = yOsa;.....it doesnt work. No exception is thrown, but no values on vertical axis are displayed. With LinearAxis its working...
Thanks for any advice...