I am using Kendo UI Chart, I want to draw a chart with multiple colors.
I am using code like:
@(Html.Kendo().Chart()
.Name("chart")
.Title("D I S C")
.Legend(legend => legend
.Visible(false)
)
.Series(series =>
{
series.Column(new int[] { 94,66,12,12 }).Color("#ff0000");
})
.CategoryAxis(axis => axis
.Name("series-axis")
.Categories("94","66","12","12")
//.Categories
.Line(line => line.Visible(false))
)
)
but its showing one color for each bar. i want to show different color in every bar. Please help me to create chart with multiple color.