目前我正在开发一个用于JavaScript的arcgis API功能层 . 我想显示关于我的图层的图表 . 可能吗?如果是,那么如何在 Map 上添加高图?

这是图表,我想在arcgis Map 上显示:

Highcharts.chart('container', {
    chart: {
        plotBackgroundColor: null,
        plotBorderWidth: null,
        plotShadow: false,
        type: 'pie'
    },
    title: {
        text: 'Fiber Position in BTK'
    },
    tooltip: {
        pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
    },
    plotOptions: {
        pie: {
            allowPointSelect: true,
            cursor: 'pointer',
            dataLabels: {
                enabled: true,
                format: '<b>{point.name}</b>: {point.percentage:.1f} %',
                style: {
                    color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
                }
            }
        }
    },
    series: [{
        name: 'Brands',
        colorByPoint: true,
        data: [{
            name: 'Arial',
            y: 61.41

        }, {
            name: 'Burried',
            y: 11.84
        }, {
            name: 'Other',
            y: 10.85
        }]
    }]
});