Blazor Line Chart

I wonder if it is possible to have html markup for the Y-axis highlighted in yellow.

. I would like to have 10-6, 10-5 ... instead of using ^. Please advise what I should do. Thanks!

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:

\u20700
\u00b91
\u00b22
\u00b33
\u20744
\u20755
\u20766
\u20777
\u20788
\u20799

Thanks a lot! It works.