I wonder if it is possible to have html markup for the Y-axis highlighted in yellow.
Hi @Angela_Lee,
While you can't use HTML markup you can still use superscript - just append the unicode sequence for the digits e.g.
string FormatAsUSD(object value)
{
return ((double)value).ToString() + "\u00b2";
}
Here is a list of all codes:
\u2070 ‐ 0
\u00b9 ‐ 1
\u00b2 ‐ 2
\u00b3 ‐ 3
\u2074 ‐ 4
\u2075 ‐ 5
\u2076 ‐ 6
\u2077 ‐ 7
\u2078 ‐ 8
\u2079 ‐ 9
Thanks a lot! It works.

