Pre loader

Display negative value in stacked column chart.

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
0

When displaying a value in a stacked column chart, if the value is negative, the negative value should be drawn from the 0 position of the y-axis or from below the other negative value if it exists. Similarly, the positive value after the negative should be drawn from the 0 position of the y-axis or from above the other positive value if it exists. But instead, in both cases, they are being drawn from the end of the previous value, resulting in overlapping.

Version
3.3.560
Images
  • You must to post comments
1
0

Hi Manash,

Thank you for your inquiry.

The best way we found for your need is to create 2 StackedColumnCollection instances, one for positive numbers, the other for negative numbers, in order to avoid overlapping.

Here are some code snippets to help filter the values from one another:

yValues: yValues1.map((v) => (v > 0 ? v : 0)) // get positive values only


yValues: yValues1.map((v) => (v < 0 ? v : 0)) // get negative values only

For a better understanding , we suggest you take a look at this CodePen:
https://codepen.io/vasculandrei/pen/poBBVVd

Best regards,
Vascul Andrei
SciChart Developer

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.