Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为 Shield UI 图表图例上的元素设置颜色。我看到有背景颜色和边框颜色,但没有颜色。legendItemSettings 也是如此——我无法设置颜色属性。
事实上,有一个颜色属性,但它是
legendItemSettings: {}
属性,可以称为 CSS 属性,而不是 Shield UI 图表的属性。所以你是对的,chartLegend 没有颜色属性,但是我们可以使用
elementStyle:{}
属性如下图:
chartLegend: { legendItemSettings: { elementStyle: { color: 'red' } } }