我在convertToFusionCharts()
中遇到第二个参数的问题。我试图在网站中设置标题,使用标签,主要内容或任何内容,但没有结果。似乎也有问题。
它设置为显示标题("过去2年销售的单位")但它不起作用。
我正在尝试:
jQuery("#myHTMLTable").convertToFusionCharts(
{
type: 'MSColumn2D',
width: "100%",
height: "500",
dataFormat: "htmltable",
renderAt: "myChartContainer"
},
{
hideTable: true,
useLabels: 0,
useLegend: 0,
showLegend: false,
showLabels: false,
major: "row"
}
);
任何人都知道什么是在讨价还价?
答案 0 :(得分:0)
尝试在图表属性中设置它们,如下所示:
jQuery("#myHTMLTable").convertToFusionCharts({
type: "pie2d",
width: "100%",
height: "650",
dataFormat: "htmltable",
renderAt: "chart-testhtmlid"}, {
"chartAttributes": {
caption: "Current Db Sizes:",
xAxisName: "Size (MB)",
yAxisName: "DB Name",
exportEnabled : "1",
exportAtClientSide: "1",
exportFileName: Instance + " Db Sizes " + ReportDate,
defaultNumberScale: "MB",
numberScaleValue: "1000,1000",
numberScaleUnit: "GB,TB",
bgColor: "FFFFFF",
theme: "fint"
},
"ignoreCols": [1,2,3,4,5,6,8]
});