I try to show a radial line series. But I find the label is cut.
I saw a similar post talk about this. But I don't find the explain of LabelSettings of axis.
Could you explain following properties:
NumericRadiusAxis.RadiusExtentScale
AxisLabelSettings.Extent AxisLabelSettings.Location And it looks AxisLabelSettings.Location is read only. I use 19.2.90 package
Hello Shengjie,
What I can see from your image is that the label being cut off is of CategoryAngleAxis but not of NumericRadiusAxis.You will be able to move the CategoryAngleAxis label text horizontally by setting AxisLabelSettings.Extent property like below.
AxisLabelSettings settings = new AxisLabelSettings(); settings.Extent = 0; categoryAngleAxis1.LabelSettings = settings;
Since you cannot set negative values for Extent, you may want to consider setting a smaller value to NumericRadiusAxis.RadiusExtentScale or making the text multiline for further adjustments.
Please take a look at the attached sample where I attempted to show the full label text by setting both AxisLabelSettings.Extent and NumericRadiusAxis.RadiusExtentScale.
6648.WpfApp1.zip
I tried your setting. The length is not enough.
I find following properties:
LabelSettings.TextWrapping
LabelSettings.LabelPanelStyle
Are they helpful?