Can I change not only format of an axis label, but also the content according to some converting rule for Values?
E.g. I would like to display positive value labels for all negative ones.
/Efim
there is no way to format the label using custom logic in code, but you can use the .NET string formatting to achieve positive labels for negative values.
<igChart:XamChart.Axes> <igChart:Axis AxisType="PrimaryY"> <igChart:Axis.Label> <igChart:Label Format="{}{0:0;0}" /> </igChart:Axis.Label> </igChart:Axis> </igChart:XamChart.Axes>