We would like to change the size of the PointMarks in the RadChart. Is there a simple way to do this?
We have tried the following:
seriesDefinition.PointMarkItemStyle = (Style) Resources["pointMarkItemStyle"]; |
With either of the following styles, this did not work:
<Style TargetType="Charting:PointMark" x:Key="pointMarkItemStyle"> |
<Setter Property="Size" Value="40"/> |
</Style> |
<Style TargetType="Charting:PointMark" x:Key="pointMarkItemStyle"> |
<Setter Property="Width" Value="40"/> |
<Setter Property="Height" Value="40"/> |
</Style> |