Tooltip will only display on one of the graphs

I have two doughnut graphs which I want to display the tooltip for the value but the only one will work and may change after a recompile.

I've attached a video of the behavior.

The Code

    <SfDashboardLayout CellSpacing="@(new double[]{10 ,10 })" Columns="3" >
        <DashboardLayoutPanels >
            <DashboardLayoutPanel ZIndex="500" SizeX="1" SizeY="1" Column="0" Row="0">
                <ContentTemplate>
                    <div>
                        <SfAccumulationChart Title="Recipients" Theme="@Theme">
                            <AccumulationChartLegendSettings Visible="true" Position="LegendPosition.Top" />
                            <AccumulationChartTooltipSettings Enable="true" />
                            <AccumulationChartSeriesCollection>
                                <AccumulationChartSeries DataSource=@RecipientSource XName="xValue" YName="yValue" Radius="70%" InnerRadius="45%" Name="Recipient">
                                    <AccumulationDataLabelSettings Visible="true" Name="text">
                                        <AccumulationChartDataLabelFont FontWeight="600" Color="white"></AccumulationChartDataLabelFont>
                                    </AccumulationDataLabelSettings>
                                </AccumulationChartSeries>
                            </AccumulationChartSeriesCollection>
                        </SfAccumulationChart>
                    </div>
                </ContentTemplate>
            </DashboardLayoutPanel>
            <DashboardLayoutPanel ZIndex="500" SizeX="1" SizeY="1" Column="1" Row="0">
                <ContentTemplate>
                    <div>
                        <SfAccumulationChart Title="Facilities" Theme="@Theme">
                            <AccumulationChartLegendSettings Visible="true" Position="LegendPosition.Top" />
                            <AccumulationChartTooltipSettings Enable="true" />
                            <AccumulationChartSeriesCollection>
                                <AccumulationChartSeries DataSource=@FacilitySource XName="xValue" YName="yValue" Radius="70%" InnerRadius="45%" Name="Facility">
                                    <AccumulationDataLabelSettings Visible="true" Name="text">
                                        <AccumulationChartDataLabelFont FontWeight="600" Color="white"></AccumulationChartDataLabelFont>
                                    </AccumulationDataLabelSettings>
                                </AccumulationChartSeries>
                            </AccumulationChartSeriesCollection>
                        </SfAccumulationChart>
                    </div>
                </ContentTemplate>
            </DashboardLayoutPanel>

Attachment: doughnut_63a1689c.rar

3 Replies 1 reply marked as answer

SM Srihari Muthukaruppan Syncfusion Team February 11, 2021 06:23 AM UTC

Hi Mike, 
 
We have analyzed your query. From that, we would like to let you know that the reported scenario has been fixed in our latest version 18.4.42. Hence we suggest you to upgrade the nugget to latest version to achieve your requirement. Please find the sample and screenshot below 
 
 
Screenshot: 
 
 
 
 
Let us know if you have any concerns. 
 
Regards, 
Srihari M 


Marked as answer

MC Mike Chafin February 11, 2021 09:51 AM UTC

That worked. Thanks.


SM Srihari Muthukaruppan Syncfusion Team February 11, 2021 11:54 AM UTC

Hi Mike, 
 
Most welcome. Kindly get in touch with us, if you requires further assistance. We are always happy in assisting you.   
   
Thanks,   
Srihari M 


Loader.
Up arrow icon