Topic starter
15/11/2022 1:53 pm
Is it possible to add Scale title for X & Y axis? (I mean title for the axis, that appears on or beside the axis, not for the dataset)
16/11/2022 10:28 am
Yes, you can add in each axes a AxesTitle like
Scales = new Dictionary<string, Axis>() { { Scales.YAxisId, new Axis() { Stacked = true, Title = new AxesTitle() { Display = true, Text = "This is an Y title" } } } }
mut9bu reacted