BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
<chart:SfChart.SecondaryAxis>
<chart:NumericalAxis Minimum="1000" Maximum="1000000" LabelCreated="NumericalAxis_LabelCreated">
</chart:NumericalAxis>
</chart:SfChart.SecondaryAxis> |
private void NumericalAxis_LabelCreated(object sender, ChartAxisLabelEventArgs e)
{
var position = e.Position;
var label = position.ToString("#,#", CultureInfo.InvariantCulture);
if (position >= 1000 && position < 1000000)
{
label = position.ToString("#,##0,K", CultureInfo.InvariantCulture);
}
else if (position >= 1000000 && position < 1000000000)
{
label = position.ToString("#,##0,,M", CultureInfo.InvariantCulture);
}
else if (position >= 1000000000)
{
label = position.ToString("#,##0,,,B", CultureInfo.InvariantCulture);
}
e.LabelContent = label;
}
} |