Hey there,
I'm currently using MVC, and have a view model that contains two Enumerables, each one representing a different series for use in the Donut Chart.
Normally, with a single enumerable, I would use the code below to bind the series.
In my case the view model has two enumerables, Model.Series1 and Model.Series2. How would I go about modifying this code to accommodate the two series?
@(Html.Kendo().Chart(Model)    .Name("chart")    .Title("Single Series")    .Legend(legend => legend        .Position(ChartLegendPosition.Bottom)    )    .Series(series =>    {        series.Donut(            model => model.Value,  // The data to use            model => model.Category, // The category Name            model => model.Color, // The color to use for the category            null // How far out the donut section should pop out        );    })    .Tooltip(tooltip => tooltip        .Visible(true)        .Template("#= category # - #= kendo.format('{0:P}', percentage) #")    ))