0

从下面的 VAADIN 图表演示链接中,您可以看到一个基本的条形图,

https://demo.vaadin.com/charts/#BasicColumn

我们在这里看到的条形颜色来自 CSS 文件,而不是 JAVA 源代码文件。有没有办法设置或获取此条的颜色?

请注意:

1)我不能使用 DataSeries 代替 ListSeries,因为 Data Series 无法实现如上面链接中所示的视图(或者我不知道)。

2)我已经检查过与我类似的其他堆栈溢出问题,但没有一个可以回答这个问题。

4

1 回答 1

0

我找到了解决上述问题的方法。现在我可以在涉及 ListSeries 的条形图条中设置我选择的颜色。

PlotOptionsColumn就是答案。

//Hard Coded Values
String months[] = { "DataSet 1", "DataSet 2", "DataSet 3", "DataSet 4", "DataSet 5"};

int dataArray[][] = { 
        { 8, 13, 7, 4 }, 
        { 23, 1, 30, 7 },
        { 37, 3, 22, 2 },
        { 13, 23, 4, 3 },
        { 3, 10, 9, 5 },
};

int counter = 0;

// Data series for each numeric column in the table
for (int month = 0; month < 4; month++) {

    ListSeries series = new ListSeries();
    PlotOptionsColumn options = new PlotOptionsColumn();
    options.setColor(colors[counter++]);
    series.setPlotOptions(options);
    series.setName(months[month]);

    // The rows of the table
    for (int data = 0; data < dataArray.length; data++) {
        series.addData(dataArray[data][month]);
    }

    conf.addSeries(series);
}
于 2016-09-27T12:52:36.447 回答