Have a good day!
Is there any method to make ticks go inside the chart? And how can I change length of tick line?
I’ve attached an image of desired result below.
Thanks in advance
- Egor asked 8 years ago
- You must login to post comments
Hi Egor,
It’s not possible to place the ticks inside the chart, but it is possible to change their size. See the XAML Styling example in our examples suite. Notice the AxisBase.MajorTickLineStyle and AxisBase.MinorTickLineStyle properties. Notice X2 Y2 is set. This is the ‘size’ of the line, since X1 Y1 is set to 0 0.
e.g. this style when applied to AxisBase.MajorTickLineStyle should do it
<Style TargetType="Line">
<Setter Property="Stroke" Value="GreenYellow"/>
<Setter Property="StrokeThickness" Value="1"/>
<Setter Property="X2" Value="8"/>
<Setter Property="Y2" Value="8"/>
</Style>
For further information about styling the axis, take a look at these articles:
Hope this helps!
Andrew
- Andrew Burnett-Thompson answered 8 years ago
- Thank you for the response!
- You must login to post comments
Please login first to submit.