I have a collection of line charts that use FastLineRenderableSeries, and they all share the same View.xaml. I’m trying to change the font size for the Y-axis tick labels in the view but for some reason it gets ignored.
This is the view for the container for all the charts:
<UserControl x:Class="….SciCharts.MainView"
…..
<ItemsControl.ItemsPanel>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
</ItemsControl.ItemTemplate>
And this is the view for each individual line chart:
<UserControl x:Class="SciCharts.LineChartView"
</UserControl.Resources>
<s:SciChartSurface.XAxes>
</s:SciChartSurface.XAxes>
<s:SciChartSurface.YAxes>
</s:SciChartSurface.YAxes>
I’m able to change the color and the anchor point using the code above, but the font size is ignored completely. Tried setting it under NumericAxis but same result. Please let me know what can I do to achieve this.
Thanks,
- Fabian Mendez asked 8 years ago
- You must login to post comments
Please login first to submit.