剑道图表栏颜色没有变化

时间:2017-08-14 03:47:30

标签: kendo-ui kendo-grid kendo-asp.net-mvc kendo-chart

Here is an image of my chart.

上图是我的图表。

这个剑道图的默认颜色没有变化 - 我尝试设置颜色,但它没有工作。

这是我的代码:

     @(Html.Kendo().Chart(item.UsageData)
                .Name(item.Type)
                .ChartArea(ca => ca.Background("transparent").Height(380))
                .Legend(l => l.Visible(true).Position(ChartLegendPosition.Bottom))
                .Series(s => s.Column("Cost", "lblUsage").Labels(l => l.Visible(true).Template("$ #= value #")))
                .CategoryAxis(x => x.Categories(item.UsageData.Select(y => y.lblUsage)).Labels(l => l.Rotation(-25)).MajorGridLines(m => m.Visible(false)).MinorGridLines(minor => minor.Visible(false)))
                .Tooltip(tooltip => tooltip.Visible(true).Template("#= dataItem.lblUsage #: #= value # $").Padding(5).Background("#3893ae"))
                    )

0 个答案:

没有答案