Group: Forum Members
Last Active: 10 Years Ago
Posts: 1,
Visits: 1
|
I have configured custom Major ticks, but they don't seem to work. I was wondering if there was an example of I could referred to.
y1ScaleConfigurator.CustomMajorTicks = new NDoubleList(new double[] { 1, 10, 100, 1000, 10000 }); y1ScaleConfigurator.MajorTickMode = MajorTickMode.CustomTicks;
Also for the LabelValueFormatters can I have the labels displayed using a base of 10.
I thought the following option would help, but apparently not.
y1ScaleConfigurator.LogarithmBase = 10;
|