如何在Primefaces中更改饼图网格的高度?
function skinPie() {
this.cfg.shadow = false;
this.cfg.title = '';
this.cfg.grid = {
background: '#ffffff',
borderColor: '#ffffff',
gridLineColor: '#F5F5F5',
shadow: false,
};
答案 0 :(得分:0)
目前还不清楚你对pieChart的网格高度有什么意义,但是这里有一些用于调整它的配置:
this.cfg.gridPadding = {top: 0, bottom: 10, left: 0, right: 0};
this.cfg.seriesDefaults = {shadow: true,
renderer: jQuery.jqplot.PieRenderer,
rendererOptions: {
fill: false,
sliceMargin: 4,
diameter: 250,
gridLineWidth: 1.0,
showDataLabels: true
}
}
请告诉我,如果这是你想要的,或者,如果不是,请告诉我你需要什么。