如何在WebPartZone中加载highchart脚本

本文关键字:加载 highchart 脚本 WebPartZone | 更新日期: 2023-09-27 18:02:27

所以我想做一个类似仪表板的页面。为了实现这一点,我使用了WebParts组件。

例如,我使用:

<asp:WebPartZone ID="WebPartZone2" runat="server">
<ZoneTemplate>
</ZoneTemplate>
</asp:WebPartZone>

在这个ZoneTemplate中,我想"加载"我的highchart(通过脚本)。我的线形高图脚本是:

 <script>
            $(function () {
    var chart;
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'lineChartDiv',
                type: 'line'
            },
            title: {
                text: 'Monthly Average Temperature'
            },
            subtitle: {
                text: 'subtitel'
            },
            xAxis: {
                categories: <%=Xaxis %>
            },
            yAxis: {
                title: {
                    text: 'Temperature (°C)'
                }
            },
            tooltip: {
                enabled: false,
                formatter: function() {
                    return '<b>'+ this.series.name +'</b><br/>'+
                        this.x +': '+ this.y +'°C';
                }
            },
            plotOptions: {
                line: {
                    dataLabels: {
                        enabled: true
                    },
                    enableMouseTracking: false
                }
            },
            series: [{
                name: 'Tokyo',
                data: [7.0, 6.9, 9.5, 14.5, 18.4, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
            }, {
                name: '<%=SeriesYaxis2name %>',
                data: <%=SeriesYaxis2 %>
                //data: [3.9,4.2,5.7,8.5,11.9,15.2,17.0,16.6,14.2,10.3,6.6,4.8]
            }]
        });
    });
});
        </script>
到目前为止,我只在进入页面时加载了完整的脚本。我希望它加载在我的"区域模板",这样我就可以显示它在框架和调整大小等必要时。我该怎么做呢?

也许我做错了。也许有更好的方法通过脚本在一个类似小部件的框架(在本例中是。net WebParts)中加载highchart。

如何在WebPartZone中加载highchart脚本

你使用的是什么。net框架?我在使用框架2.0时遇到了同样的问题,我不得不创建一个web用户控件,并将highcharts和jquery框架等所需的所有东西导入其中。