FusionCharts 中的图例(饼图)- PHP
Legend in FusionCharts (Pie chart) - PHP
是否可以在 PIE CHART (FUSIONCHARTS) 中显示图例 - PHP?
showLegend 属性名称已激活但未显示!!!
图表属性名称:<br>
caption='Vendor Wise Data Volume' startingAngle ='90' showLegend='1' showPercentInToolTip='0' bgColor='f7f2ea' chartTopMargin='20' chartBottomMargin='20' formatNumberScale='0' pieRadius='100' exportEnabled ='1' exportAtClient='1' exportHandler='index.php' labelDisplay='ROTATE'
根据你的问题,我用FusionCharts的图表Fiddle试了一下。
FusionCharts.ready(function() {
var ageGroupChart = new FusionCharts({
type: 'pie3d',
renderAt: 'chart-container',
width: '450',
height: '300',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "Vendor Wise Data Volume",
"paletteColors": "#FFFF00, #6495ED",
"bgColor": "#f7f2ea",
"showBorder": "0",
"use3DLighting": "0",
"showShadow": "0",
"enableSmartLabels": "0",
"startingAngle": "0",
"labelDisplay": "Rotate",
"showPercentValues": "1",
"showPercentInTooltip": "0",
"pieRadius": "100",
"exportEnabled": "1",
"decimals": "1",
"captionFontSize": "14",
"subcaptionFontSize": "14",
"subcaptionFontBold": "0",
"toolTipColor": "#ffffff",
"toolTipBorderThickness": "0",
"toolTipBgColor": "#000000",
"toolTipBgAlpha": "80",
"toolTipBorderRadius": "2",
"toolTipPadding": "5",
"showHoverEffect": "1",
"startingAngle": "90",
"showLegend": "1",
"legendBgColor": "#ffffff",
"legendBorderAlpha": '0',
"legendShadow": '0',
"legendItemFontSize": '10',
"legendItemFontColor": '#666666'
},
"data": [
{
"label": "2015-04-21, 813,740.59",
"value": "813740.59"
},
{
"label": "2015-04-14, 6,580,863",
"value": "6580863"
}
]
}
}).render();
});
希望对您有所帮助。如需进一步帮助@ Chart Fiddle
是否可以在 PIE CHART (FUSIONCHARTS) 中显示图例 - PHP?
showLegend 属性名称已激活但未显示!!!
图表属性名称:<br>
caption='Vendor Wise Data Volume' startingAngle ='90' showLegend='1' showPercentInToolTip='0' bgColor='f7f2ea' chartTopMargin='20' chartBottomMargin='20' formatNumberScale='0' pieRadius='100' exportEnabled ='1' exportAtClient='1' exportHandler='index.php' labelDisplay='ROTATE'
根据你的问题,我用FusionCharts的图表Fiddle试了一下。
FusionCharts.ready(function() {
var ageGroupChart = new FusionCharts({
type: 'pie3d',
renderAt: 'chart-container',
width: '450',
height: '300',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "Vendor Wise Data Volume",
"paletteColors": "#FFFF00, #6495ED",
"bgColor": "#f7f2ea",
"showBorder": "0",
"use3DLighting": "0",
"showShadow": "0",
"enableSmartLabels": "0",
"startingAngle": "0",
"labelDisplay": "Rotate",
"showPercentValues": "1",
"showPercentInTooltip": "0",
"pieRadius": "100",
"exportEnabled": "1",
"decimals": "1",
"captionFontSize": "14",
"subcaptionFontSize": "14",
"subcaptionFontBold": "0",
"toolTipColor": "#ffffff",
"toolTipBorderThickness": "0",
"toolTipBgColor": "#000000",
"toolTipBgAlpha": "80",
"toolTipBorderRadius": "2",
"toolTipPadding": "5",
"showHoverEffect": "1",
"startingAngle": "90",
"showLegend": "1",
"legendBgColor": "#ffffff",
"legendBorderAlpha": '0',
"legendShadow": '0',
"legendItemFontSize": '10',
"legendItemFontColor": '#666666'
},
"data": [
{
"label": "2015-04-21, 813,740.59",
"value": "813740.59"
},
{
"label": "2015-04-14, 6,580,863",
"value": "6580863"
}
]
}
}).render();
});
希望对您有所帮助。如需进一步帮助@ Chart Fiddle