Should be really simple.... cannot find any documentation and the demo is lacking...
How do you set the target color from the helper?
@(Html.Kendo() .Sparkline() .Name("sprkFundsDisbursed") .Type(SparklineType.Bullet) .HtmlAttributes(new { style = "text-align: left; width:100%; line-height:30px;" }) .Tooltip(tooltip => tooltip.Format("{0}%")) .SeriesColors(new string[] {"blue"}) .ValueAxis(axis => axis .Numeric() .Min(0) .Max(100) .PlotBands(bands => { bands.Add().From(0).To(95).Color("#787878").Opacity(0.15); bands.Add().From(95).To(100).Color("#787878").Opacity(0.3); }) ) .Data(new double[] { 43, 95 })