首页 / 浏览问题 / 云GIS / 问题详情
点击marker出的统计表只有格式无对应数据
16EXP 2017年07月27日
function generateData(config1)
{
	 for(var i = 0,lengthCountry = smCountryArr1.length;i < lengthCountry ;i++)
	 {
        var point = new SuperMap.Geometry.Point(parseFloat(smCountryArr1[i][1]),parseFloat(smCountryArr1[i][2])),
                strContent = new Array(smCountryArr1[i][0],smCountryArr1[i][3],smCountryArr1[i][4])
     }
		return (strContent);
	
}
config1={
        type: 'pie',
        data: {
            datasets: [{
                data:generateData(),
                backgroundColor: [
                    window.chartColors.red,
                    window.chartColors.orange,
                    window.chartColors.yellow,
                    window.chartColors.green,
                    window.chartColors.blue,
                ],
                label: 'Dataset 1'
            }],
            labels: [
                "Red",
                "Orange",
                "Yellow",
                "Green",
                "Blue"
            ]
        },
        options: {
            responsive: true,
            legend: {
                position: 'top',
            },
            title: {
                display: true,
                text: 'Chart.js Doughnut Chart'
            },
            animation: {
                animateScale: true,
                animateRotate: true
            }
        }
    
				}
					
function openwin3() {
        var ctx = document.getElementById("chart-holder").getContext("2d");
        window.myPie = new Chart(ctx, config1);
    };
	

运行结果如下:
请问代码中的什么问题导致没有链接对应数据?

1个回答

点击点时回调函数的参数是当前点击的点,根据点的属性去查询、获取相关数据,组织、显示到弹窗里就行了。
1,780EXP 2017年07月27日
...