currently I’m trying to make a chart with WPF chart toolkit,
the requirement is that Y-axis should show as the image below:

which describes
*0~84 is Level D
*85~99 is Level B
…
I’m not sure whether chart toolkit can make this type of Y-axis scale.
I’ll try to put TextBox controls directly into the canvas for “Level *” label if above is not supported by the chart toolkit, still I have problem how can I show only 85, 100, 115 as scale of Y axis.
Any help would be appreciated. Thanks.
You can try to use a Converter for the axis label of your chart. Something like this:
XAML
and in your codebehind the converter is
HTH