Hello,
I have problem with AxisY values. Bar value is for example 46,6% and AxisY show 4660,0%.
(barchart)
I believe that the percent value is based off of a decimal. So the number you should have in your data should be .466 but it appears you have 46.6. So you need to divide the value you are using by 100. So, 46.6/100=0.466 and the chart will intepret it correctly. You could alternativly not set the axis to percent and use the axis.label.endtext = "%" and achieve a similar result. (syntax on this command may be wrong)
Thank you, it works good.
I did:
for AxisY/ NumericOptions/ Format - I selected 'Percent'
series1.PointOptions.ValueNumericOptions.Format = NumericFormat.Percent
and changed number from 46.6 --> 0,466