如何摆脱背景中交替的浅灰色和白色水平分隔条?
问问题
731 次
1 回答
1
请参阅CSS 教程中的样式图表,明确“示例 8-6 为图表设置透明背景”。
.chart-plot-background {
-fx-background-color: transparent;
}
.chart-alternative-row-fill {
-fx-fill: transparent;
-fx-stroke: transparent;
-fx-stroke-width: 0;
}
还:
您可以通过将 setAlternativeRowFillVisible(false) 方法应用于 JavaFX 应用程序中的图表来使替代行不可见。
于 2013-05-31T20:24:54.443 回答