刷新Shield UI ASP图表而不重新加载页面?

时间:2013-08-05 11:58:16

标签: asp.net shieldui

我在网页(aspx)上使用Shield UI ASP.NET图表。我需要刷新图表并根据下拉列表中的选定项目显示数据。但是,当按下按钮时页面会重新加载,我需要其他图表保留其所选系列。这是我的代码:

    protected void Button1_Click(object sender, EventArgs e)
    {
        if (DropDownList1.SelectedIndex == 0) {
            ShieldChart3.DataSource = new List<int>() { 12, 3, 4, 2, 12, 3, 4, 17, 22, 34, 54, 67 };
        }
        if (DropDownList1.SelectedIndex == 1)
        {
            ShieldChart3.DataSource = new List<int>() { 3, 9, 12, 14, 22, 32, 45, 12, 67, 45, 55, 7 };
        }
        if (DropDownList1.SelectedIndex == 2)
        {
            ShieldChart3.DataSource = new List<int>() { 23, 19, 11, 134, 242, 352, 435, 22, 637, 445, 555, 57 };
        }
        if (DropDownList1.SelectedIndex == 3)
        {
            ShieldChart3.DataSource = new List<int>() { 13, 19, 112, 114, 212, 332, 435, 132, 67, 45, 55, 7 };
        }
    }

如何刷新重新加载页面的其中一个图表?

2 个答案:

答案 0 :(得分:0)

您可以将图表控件放在UpdatePanel控件中,并使此按钮成为UpdatePanel的触发器。这样,当您单击它时 - 页面将仅执行部分回发,并且只有按钮单击时才会刷新UpdatePanel内的图表。

答案 1 :(得分:0)

您需要一个按钮,但它的代码不是从C#代码模块处理,而是在脚本中处理。为此,您需要声明一个JS函数。见代码:

    function PS(qtr){
        var SD = SalesData[qtr].values;
        detailChartElement = $('#' + "<%=ShieldChart3.ClientID%>"),
        detailChart = detailChartElement.swidget(),
        initialOptions = detailChart.initialOptions,
        headerText = ' Your sales data... ';
        detailChart.destroy();
        detailChartElement.shieldChart($.extend(initialOptions, {
            primaryHeader: {
                text: headerText

            },
            dataSeries: [{
                seriesType: 'line',
                collectionAlias: 'Sales data...',
                data: SD
            }]
        }));
    }

,在按钮的单击事件中,您应该为该功能添加一个clal。或者更简单地说,您可以使用select将tha值传递给函数:

<select id="Quarter" onChange="PS(this.value)">
    <option value="0">Option 1</option>
    <option value="1">Option 2</option>
    <option value="2">Option 3</option>
    <option value="3">Option 4</option>
</select>