Pre loader

No chart with CategoryNumericAxis

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

1
0

Hi,
I use SciChart in a datagrid as a Sparkline.
Using a NumericAxis the first and last column is displayed in half.
By replacing the X axis by CategoryNumericAxis chart doesnt works.

<s:SciChartSurface Height="200" Width="300" RenderPriority="Low" MaxFrameRate="24" Background="Black">
<s:SciChartSurface.RenderSurface>
    <s:HighSpeedRenderSurface/>
</s:SciChartSurface.RenderSurface>
<s:SciChartSurface.RenderableSeries>
    <s:FastColumnRenderableSeries DataSeries="{Binding Volume}" DataPointWidth="0.75" Fill="Red" Stroke="Black"/>
</s:SciChartSurface.RenderableSeries>
<s:SciChartSurface.XAxis>
    <s:CategoryNumericAxis AutoRange="Always" DrawMinorGridLines="False" Visibility="Hidden" DrawMajorGridLines="False" DrawMajorBands="False" />
</s:SciChartSurface.XAxis>
<s:SciChartSurface.YAxis>
    <s:NumericAxis AutoRange="Always" DrawMinorGridLines="False" DrawMinorTicks="False" DrawMajorGridLines="False" DrawMajorBands="False" DrawMajorTicks="False" >
        <s:DoubleRange Min="0" />
    </s:NumericAxis>
</s:SciChartSurface.YAxis>

and code

public XyDataSeries<int, float> Volume { get; set; } = new XyDataSeries<int, float>();

init()
{
   Volume.Append(0, 500);
   Volume.Append(1, 100);
   Volume.Append(2, 1000);
   Volume.Append(3, 700);
   Volume.Append(4, 600);
   Volume.Append(5, 300);
}
Version
4.1.1.8645
  • You must to post comments
0
0

Recently someone reported the bug that CategoryNumericAxis throws when DataSeries TX is int.

The good news is, we have fixed that and published it to our Nuget feed.

If you update to the latest version (v4.2.0) of SciChart, it will work. Or, if you cannot update, as a workaround you can set TX=double and it will also work.

Best regards,
Andrew

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.

Try SciChart Today

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

Start TrialCase Studies