Pre loader

How to change Axis Tick Label Font and FontWeight in code behind?

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

Answered Closed
0
0

I found how to change the axis tick label FontWeight in the XAML code by creating a Style, but is there a way to change the axis tick label FontWeight property in the code behind (MainWindow.xaml.cs)?

The reason I want to be able to do this is that I prefer to create the axis in code. Here is how I set up the XAxis in code:

        double xDelta = 10.0;
        sciChart.XAxis = new NumericAxis();
        sciChart.XAxis.AxisAlignment = AxisAlignment.Bottom;
        sciChart.XAxis.DrawMajorBands = true;
        sciChart.XAxis.FlipCoordinates = false;
        sciChart.XAxis.GrowBy = new DoubleRange( -xDelta, xDelta );
        sciChart.XAxis.TextFormatting = "#0";
        sciChart.XAxis.VisibleRange = new DoubleRange( m_MinX - xDelta, m_MaxX + xDelta );
        sciChart.XAxis.VisibleRangeLimit = new DoubleRange( m_MinX - xDelta, m_MaxX + xDelta );
        sciChart.XAxis.AxisTitle = "X-Axis";

It would be nice to be able to set the Font and FontWeight in the code as well.

Thanks,
Dave

  • You must to post comments
Best Answer
0
0

Hi Dave,

Thanks for your question. Doing this in code is very similar to doing it in XAML. You should create a Style object with appropriate TargetType and add Setters for all the desired properties, then assign it to the TickLabelStyle property on an axis.

You can easily find an example of creating styles in code by googling it.

Please let us know if you need more assistance with this,

Best regards,
Yuriy

  • Dave Leach
    Yuriy, thanks for the pointer. It works great.
  • You must to post comments
Showing 1 result

Try SciChart Today

Start a trial and discover why we are the choice
of demanding developers worldwide

Start TrialCase Studies