如何在Kendo图表标题中设置字体颜色?

时间:2016-08-08 10:52:58

标签: css kendo-asp.net-mvc telerik-grid

我的css文件如下所示:

#productGrid .k-grid-header .k-header
{
       background-color: blue;
       color: white !important;

}

这适用于背景颜色,但不适用于字体颜色!

我的网格代码如下所示:

@(Html.Kendo().Grid<ProductSummary>()
.Name("productGrid")
.Columns(columns =>
{
    columns.Bound(c => c.Product);
    columns.Bound(c => c.Quantity);
    columns.Bound(c => c.Value).ClientTemplate("£#= kendo.toString(Value, \"n2\") #");
    columns.Bound(c => c.Percentage).Title("%");
})
.HtmlAttributes(new { style = "height: 550px;" })
.Scrollable()
.Sortable()
.DataSource(dataSource => dataSource
    .Ajax()
    .Read(read => read.Action("Products_Read", "Products", new { region = ViewBag.regions[Model.RegionPos].Value }))
)

1 个答案:

答案 0 :(得分:0)

我的同事帮助我解决了这个问题。事实证明,标题实际上是一个超链接。

gtk+3