Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
25
Problems with new version Infragistics3.Wpf.Chart.v9.1
posted

We were working with the library Infragistics3.Wpf.Chart.v7.2 for a long time without any problem, but recently we decided to try the new one (Infragistics3.Wpf.Chart.v9.1), and we have found a problem: there are charts that the program doesn't draw properly.

We draw the charts in the vb .net code, because the number of the datapoints depends on the data we receive from  the databases and the color of those datapoints, depends on that data too. Since we've changed the version, if we create more than 31 datapoints, the chart ignores the style we defined for each one.

For example, it the chart has 31 datapoints defined, the chart would be:

But if the data changes and the chart needs to have more than 31 datapoints (for example 32) the chart becomes:

 With the version v7.2, the chart was:

So, what's the problem? Is there a limit on the number of the datapoints that you can add to a Serie? Maybe there was a limit on version v7.2 but we didn´t reach it. Has it got a limit too?

Thank you for your attention.

Parents
  • 28496
    Verified Answer
    Offline posted

    i think your chart is switching over to "fast rendering mode," which was added in 8.1.  in fast rendering mode, some styling features are turned off.

    you can go back to the old behavior using this markup:

     <igChart:XamChart>
                <igChart:XamChart.Scene>
                    <igChart:Scene>
                        <igChart:Scene.GridArea>
                            <igChart:GridArea>
                                <igChart:GridArea.RenderingOptions>
                                    <igChart:GridAreaRenderingOptions RenderingMode="Full" />
                                </igChart:GridArea.RenderingOptions>
                            </igChart:GridArea>
                        </igChart:Scene.GridArea>
                    </igChart:Scene>
                </igChart:XamChart.Scene>
            </igChart:XamChart>

     

Reply Children
No Data