gpt4 book ai didi

java - 在 javafx 中更改堆栈条形图中的颜色

转载 作者:行者123 更新时间:2023-11-29 03:20:23 27 4
gpt4 key购买 nike

我创建了包含两个堆栈的堆栈条形图,我想让后一个堆栈不可见....

StackBar.getData().addAll(series1,series2);

我想改变series1的颜色,

有没有什么方法或教程可以说明如何做到这一点?

最佳答案

我想你的意思是这样的:

因此,您所要做的就是更改此 CSS 类:.default-color0.chart-bar

然后你可以将它设置为白色(与背景或visibility:hidden;相同)您可以在下面看到一个如何实现这一目标的示例。

enter image description here

import java.util.Arrays;
import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.chart.CategoryAxis;
import javafx.scene.chart.NumberAxis;
import javafx.scene.chart.StackedBarChart;
import javafx.scene.chart.XYChart;
import javafx.stage.Stage;


public class Charts extends Application {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}

@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("stackoverflow.com");
Group root = new Group();

final CategoryAxis xAxis = new CategoryAxis();
final NumberAxis yAxis = new NumberAxis();

xAxis.setLabel("Month");
xAxis.setCategories(FXCollections.<String> observableArrayList(Arrays.asList(
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December")));
yAxis.setLabel("Value");

final StackedBarChart<String,Number> stackedBarChart = new StackedBarChart<>(xAxis,yAxis);

stackedBarChart.setTitle("StackedBarChart");

//Series 1
XYChart.Series<String,Number> series1 = new XYChart.Series();
series1.setName("XYChart.Series 1");

series1.getData().add(new XYChart.Data("January", 100));
series1.getData().add(new XYChart.Data("February", 200));
series1.getData().add(new XYChart.Data("March", 50));
series1.getData().add(new XYChart.Data("April", 75));
series1.getData().add(new XYChart.Data("May", 110));
series1.getData().add(new XYChart.Data("June", 300));
series1.getData().add(new XYChart.Data("July", 111));
series1.getData().add(new XYChart.Data("August", 30));
series1.getData().add(new XYChart.Data("September", 75));
series1.getData().add(new XYChart.Data("October", 55));
series1.getData().add(new XYChart.Data("November", 225));
series1.getData().add(new XYChart.Data("December", 99));

//Series 2
XYChart.Series<String,Number> series2 = new XYChart.Series();
series2.setName("XYChart.Series 2");


series2.getData().add(new XYChart.Data("January", 150));
series2.getData().add(new XYChart.Data("February", 100));
series2.getData().add(new XYChart.Data("March", 60));
series2.getData().add(new XYChart.Data("April", 40));
series2.getData().add(new XYChart.Data("May", 30));
series2.getData().add(new XYChart.Data("June", 100));
series2.getData().add(new XYChart.Data("July", 100));
series2.getData().add(new XYChart.Data("August", 10));
series2.getData().add(new XYChart.Data("September", 175));
series2.getData().add(new XYChart.Data("October", 155));
series2.getData().add(new XYChart.Data("November", 125));
series2.getData().add(new XYChart.Data("December", 150));

//
stackedBarChart.getData().addAll(series1, series2);
root.getChildren().addAll(stackedBarChart);
primaryStage.setScene(new Scene(root, 500, 400));
primaryStage.getScene().getStylesheets().add("style.css");
primaryStage.show();
}
}

然后是 styles.css 的 CSS:

.default-color0.chart-bar {
-fx-bar-fill: #FFFFFF;
visibility:hidden;
}
.default-color1.chart-bar {
-fx-bar-fill: #00FFCC;
}

关于java - 在 javafx 中更改堆栈条形图中的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24018210/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com