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.