Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/407.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 如何修改链接融合图中子图的类型?_Javascript_Fusioncharts - Fatal编程技术网

Javascript 如何修改链接融合图中子图的类型?

Javascript 如何修改链接融合图中子图的类型?,javascript,fusioncharts,Javascript,Fusioncharts,默认情况下,子图表将遵循父图表的类型。在我的情况下,父图表是bar2d。我要显示为折线图的子图表。如何配置此功能?请尝试configureLink方法 myChart.configureLink({ type: 'pie2d', // Set the linked-charts configuration to load all linked charts as Pie width: '80%', // The width of the charts would be 80% o

默认情况下,子图表将遵循父图表的类型。在我的情况下,父图表是bar2d。我要显示为折线图的子图表。如何配置此功能?

请尝试
configureLink
方法

myChart.configureLink({
    type: 'pie2d', // Set the linked-charts configuration to load all linked charts as Pie
    width: '80%', // The width of the charts would be 80% of their parent container
    overlayButton: {
        message: ' X ', // Set the button to show letter "X"
        bgColor:'#999999',
        borderColor: '#cccccc'
    }
});