Pre loader

Tag: SciChart Label Font FontWeight

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

0 votes
7k views

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

  • Dave Leach asked 8 years ago
  • last active 8 years ago
Showing 1 result

Try SciChart Today

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

Start TrialCase Studies