如何更改标签颜色(categoryAxis.categories)?

时间:2017-09-13 08:04:06

标签: kendo-ui kendo-chart

请告诉我。 如何使用类别更改轴上特定铭文的标签颜色(categoryAxis.categories = [" 2016"," 2017"])

1 个答案:

答案 0 :(得分:0)

您可以使用categoryAxis.labels的 visual property 来控制标签的外观。

categoryAxis: {
    categories: [1952, 1956, 1960, 1964, 1968, 1972, 1976, 1984, 1988, 1992, 1996, 2000, 2004, 2008, 2012],
    labels: {
      visual: function(e) {
        var l = e.createVisual();
        if (e.text == '1968' || e.text == '2000'){
            l.children[0].options.fill.color = "#ff0000";
        }
        return l;
      }
    }                  
},

DEMO