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.
有没有办法从 AreaChart 中删除符号?LineChart 和 ScatterChart 具有该功能,但在 AreaChart 中没有可用的功能。
或者,如果我可以在 LineChart(如 AreaChart 中)的下方区域“填充”绘画,我也可以使用它。
我的目标是构建一个没有符号的 AreaChart——无论是使用 lineChart(以某种方式填充它下面的区域)还是 AreaChart——都没有关系......
谢谢
通过反复试验,我发现您可以使用此 css 代码来关闭 AreaChart 上的符号
.chart-area-symbol { -fx-background-color: null, null; }
通常第一种颜色是符号笔划的颜色,第二种颜色是填充的颜色。将它们都设置为 null,并且不绘制符号。
或者,将形状设置为无操作:
.chart-area-symbol { -fx-shape: ""; }