How do you adjust the formatting of the asp.net point chart? I’d like to dynamically set maximum and minimums based on data in a List<>. I’d also like to figure out the properties that allows me to tweak the intervals within each of the axes and also formatting the labels so that I can change decimals to percentages.
Share
I think I found the answer to the setting maximum and minimum on the axes. See below:
//define chart UI
double minimum = -0.08;
double maximum = 0.08;
double interval = maximum/2;
However, is there a way to change the label formatting to percentages instead of decimals?