BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hello Syncfusion,
I have a pie chart drawn in my application. However, the titles on my pie chart are not visible; When I inspect, I find that Y="NaN" and so I cannot see the chart title.However, when I manually input Y="100", I can see the chart title.
How can I solve this.
I have attached my code files here for your review.
Thank You
Hi IBS,
Greetings from Syncfusion.
We have ensured your reported scenario in latest version; accumulation chart title is rendered properly. We have attached the tested sample and screenshot for your reference.
Sample : https://www.syncfusion.com/downloads/support/directtrac/general/ze/AccChartTitle1579301425.zip
Since we are unable to replicate an issue from our end, we request you to share the following information which will be helpful for further analysis and provide you the solution sooner.
Kindly revert us if you have any concerns.
Regards,
Durga Gopalakrishnan.
Hi Durga,
I shared my code files in the email I shared earlier on. Please use that one.
My NugGt Package version is : 20.2.0.46. Could it be the problem ?
Thank You
IBS,
We have checked your reported scenario with attached code snippet. We have noted that you have bind the ExplodeRadius property to ExplodeOffset property of accumulation chart in CummulativeChartPartialPage.razor file and specified ExplodeOffset in DashboardPage.razor file, so the reported console exception thrown, and title is not rendered.
We request you to assign and access the property names properly in your application to overcome the reported problem. We have attached the modified sample for your reference. Please check with the below snippet and sample.
PiePartial.razor <SfAccumulationChart Title="@ChartTitle"> <AccumulationChartSeriesCollection> <AccumulationChartSeries ExplodeOffset="@ExplodeOffset"> </AccumulationChartSeries> </AccumulationChartSeriesCollection> </SfAccumulationChart>
Index.razor <PiePartial Explode="true" ExplodeOffset="10%" ChartTitle="Total number of Beneficiaries on ICARE - By Known Risk Factor" />
|
Sample : https://www.syncfusion.com/downloads/support/directtrac/general/ze/PieTitle1195854288.zip
Please revert us if you have any concerns.