I have a view that contains a DatePicker and a CircularGauge using SeriesType.Doughnut. The SeriesType.Doughnut requires using Syncfusion.Javascript.Datavisualization, however, when I add that to the view, the DatePicker stops rendering. Please advise. I am using the code provided in the HealthTracker Sample:
@(Html.EJ().Chart("ChartStep")
.Series(s =>
{
s.Points(p =>
{
p.X("Carbohydrate").Y(60).Fill("#D3C1D4").Visible(true).Add();
p.X("Fat").Y(40).Fill("#B26CAB").Visible(true).Add();
})
.Name("Newyork")
.Type(SeriesType.Doughnut)
.LabelPosition(ChartLabelPosition.Inside)
.DoughnutSize(.9f)
.DoughnutCoefficient(0.9f)
.EnableAnimation(true)
.Opacity(0.8f)
.Border(b => b.Color("#D3C1D4"))
.Marker(sty => { sty.Opacity(0.8f).Border(border => { border.Color("#D3C1D4"); }); }).Add();
})
Thank You.