Cannot render stacking bar series correctly

Hi Syncfusion Team, I am building a stacking bar chart dynamically. Which means that I will have different yName for the data source every time. Here is my code:

Image_8630_1726734045571

And the below figure is the result:

Image_8770_1726734117109

But when I use static code instead of dynamic code, for example: 

Image_8167_1726734183381

It will render the chart correctly:

Image_4124_1726734231728Why will this happen? And how can I solve this problem? Thank you!


1 Reply

SB Swetha Babu Syncfusion Team September 20, 2024 12:04 PM UTC

Hi Yvonne,


Greetings from Syncfusion.


We have created  a react application by rendering the stacking bar series using the dynamically created y values. Unfortunately we are unable to replicate the same. Please find the below stackblitz link for your reference.


Sample link: https://stackblitz.com/edit/react-47fu8q-kbtpvr?file=index.js


Code Snippet:


<SeriesCollectionDirective>

            {data1[0] && Object.keys(data1[0]).filter(key => key.startsWith('y')).map((key, index) => (

              <SeriesDirective

                key={index}

                dataSource={data1}

                xName="x"

                yName={key}

                name={`Series ${index + 1}`}

                columnWidth={0.6}

                border={{ width: 1, color: 'white' }}

                type="StackingBar"

              />

            ))}

          </SeriesCollectionDirective>

 


Screenshot:


Image_9368_1726833864386


If the reported scenario still persists, please modify the above sample to replicate the same. It will be helpful for us to analyze further and assist you better.


Regards,

Swetha


Loader.
Up arrow icon