创建后更改 YUI 饼图的颜色

发布于 2024-11-17 08:03:28 字数 386 浏览 6 评论 0原文

我想在创建饼图后更改可用的颜色数组。我想我需要使用 setSeriesStyles 方法,但我找不到它的任何示例和 文档不清楚。

到目前为止我已经尝试过

pieChart.setSeriesStyles([{colors: ['#D4D4D4']}]);

并且

pieChart.setSeriesStyles([{ style: { colors: ['#D4D4D4']}}]);

I want to change the array of colors available to a pie-chart after I have created it. I think I need to use the setSeriesStyles method but I cannot find any examples of it and the documentation is not clear.

So far I have tried

pieChart.setSeriesStyles([{colors: ['#D4D4D4']}]);

and

pieChart.setSeriesStyles([{ style: { colors: ['#D4D4D4']}}]);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风渺 2024-11-24 08:03:28

因为我有一个正在轮询的实时数据源,所以我可以在数据更改时监听事件,然后在将数据发送到图表之前更新图表。

 datasource.doBeforeCallback = function(oRequest, oFullResponse, oParsedResponse, oCallback) {
    if (!oParsedResponse.results || oParsedResponse.results.length < 1) {
        oParsedResponse.results = [{ "name": "No Activity", "count": "0" }];
        mychart._seriesDefs.style.colors = [{style: { colors: ['#000000']}}];
    } else {
        mychart._seriesDefs = null; // sets color array back to default
    }
    return oParsedResponse;
};

Because I have a live datasource that I am polling, I can listen for an event when the data changes and then update the chart before sending the data onto it.

 datasource.doBeforeCallback = function(oRequest, oFullResponse, oParsedResponse, oCallback) {
    if (!oParsedResponse.results || oParsedResponse.results.length < 1) {
        oParsedResponse.results = [{ "name": "No Activity", "count": "0" }];
        mychart._seriesDefs.style.colors = [{style: { colors: ['#000000']}}];
    } else {
        mychart._seriesDefs = null; // sets color array back to default
    }
    return oParsedResponse;
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文