0

私はこれのほとんどを理解しましたが、部分的なページビューを返す必要があるのか​​、それとも画像だけを返す必要があるのか​​疑問に思っています。

したがって、MVCでドリルダウンチャートを実装する必要がある方法は、http://geekswithblogs.net/DougLampe/archive/2011/01/23/charts-in-asp.net-mvc-2-withで確認できます。 -drill-down.aspx

ここで重要な点は、シリーズのURLプロパティを利用して、チャートの「レベルを下に」ナビゲートしていることです。

public ActionResult HistoricalChartMap(int reportID)
{
    HistoricalChartData chartData = new HistoricalChartData(reportID, string.Format("Chart_{0}", Guid.NewGuid().ToString().Replace('-', 'a')));
    LineChart chart = new LineChart(chartData);

    foreach (Series series in chart.Series)
    {
        string postBackValue = series.PostBackValue;
        series.Url = string.Format("../Chart/HistoricalDrillDown?ReportID={0}&PostBackValue={1}", reportID, postBackValue);
    }

    //Must call SaveImage before GetHtmlImageMap
    var imgStream = new MemoryStream();
    chart.SaveImage(imgStream);
    imgStream.Seek(0, SeekOrigin.Begin);

    string sessionKey = string.Format("HistoricalReport: {0}", reportID);
    Session[sessionKey] = chart;

    // Return the contents of the Stream to the client
    return Content(chart.GetHtmlImageMap("HistoricalChartMap"));
}

URLが私のChartControllerのメソッドを指していることに注意してください。

public ActionResult HistoricalDrillDown(int reportID, string postBackValue)
{
    string sessionKey = string.Format("HistoricalReport: {0}", reportID);
    LineChart lineChart = (LineChart)Session[sessionKey];
    lineChart.DrillChart(postBackValue);

    var imgStream = new MemoryStream();
    lineChart.SaveImage(imgStream);
    imgStream.Seek(0, SeekOrigin.Begin);

    // Return the contents of the Stream to the client
    return File(imgStream, "image/png");
}

HistoricalDrillDownは、部分ビューに表示したい新しいChartImageを返しますが、この時点でボールをドロップしています。現在のチャート画像を返された画像に置き換えるにはどうすればよいですか?現在、チャート画像だけが表示されている新しいページに移動しています。

私の部分ビューのマークアップは次のようになります。

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<div id="HistoricalChartDialog">
    <div id="ChartConfigurators">
        <label for="ReportSelector">Historical Chart: </label>
        <select id="ReportSelector" name="ReportSelector"></select>

        <div id="ToggleLegendWrapper">
            <label for="ToggleLegend">Toggle Legend</label>
            <input type="checkbox" id="ToggleLegend" name="ToggleLegend" />
        </div>
    </div>
    <img id="HistoricalChart" src="" alt="" usemap="#HistoricalChartMap" />
</div>

この部分ビューの中央にあるimgタグに注意してください。ユーザーがHistoricalDrillDownへのURLをたどった後、imgのSRC属性を更新したいと思います。

提案をします。:)

敬具。

4

1 に答える 1

0

私はこれを行うことを選びました:

foreach (Series series in lineChart.Series)
{
    series.Url = string.Format("javascript: DrillChart('{0}')", series.PostBackValue);
}

次に、イメージを置き換えるためのロジッククライアント側を処理しました。

于 2012-01-18T17:36:58.873 に答える