彩票走势图

Essential Studio for mobile MVC如何添加移动图表到MVC3 ASPX应用程序中

原创|使用教程|编辑:郝浩|2013-07-05 15:58:00.000|阅读 186 次

概述:在前面中文章中已经说过了一些Essential Studio for mobile MVC中MVC3 ASPX的应用,本文主要是说明如何添加移动图表到MVC3 ASPX应用程序中。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

    在前面中文章中已经说过了一些Essential Studio for mobile MVC中MVC3 ASPX的应用,本文主要是说明如何添加移动图表到MVC3 ASPX应用程序中。

使用生成器

    以下的步骤是解释如何使用生成器图表的添加到应用程序中。

   1、在视图中,用控件ID作为第一个参数调用图表帮助。

[ASPX]

<%= Html.MobSyncfusion().Chart("Chart")
              .Series(series =>
              {
          series.Add().Name("Series 1").Type(SeriesType.Column).Points(p =>
                  {
                      p.Add(1, 75);
                      p.Add(2, 82);
                      p.Add(3, 87);
                      p.Add(4, 84);
                      p.Add(5, 84);
                      ...         
                  });
              }).Axes(axes => {
                  axes.PrimaryX(xaxis =>
                  {
                      xaxis.Title("X-Title");
                  }).PrimaryY(yaxis =>
                  {
                      yaxis.Title("Y-Title");
                  });
              }).Size(new System.Drawing.Size(700,500)).Text("Simple Chart").Font(new ChartFont("Arial", "15px", ChartFontStyle.Bold)).ElementSpacing(10)
    %>

   2、绑定运行程序。

Essential Studio for mobile MVC如何添加移动图表到MVC3 ASPX应用程序中

使用图表模型

   下面使用了属性模型来添加图表到应用程序上。

   1、在该控制器中,创建一个ChartModel实例,定义属性并使用ViewData传递实例到视图。

[C#]

public ActionResult SimpleChart()
{
            ChartModel model = new ChartModel();
            Series series = new Series("Series 1");
            series.Points.Add(1991, 3.9);
            series.Points.Add(1992, 5.3);
            series.Points.Add(1993, 8.8);
            series.Points.Add(1994, 15);
            series.Points.Add(1995, 20.6);
            series.Type = SeriesType.Column;

            model.Series.Add(series);
            model.Size = new Size(500, 400);
            ViewData["ChartModel"] = model;
            return View();
}             

   2、在视图中,创建对话框内容和用ViewData key作为第一个参数调用图表帮助。

[aspx]

<%= Html.MobSyncfusion().Chart("SimpleChart", (ChartModel)ViewData["ChartModel"])%>

   3、生成并运行该应用程序,输出将如下所示。

Essential Studio for mobile MVC如何添加移动图表到MVC3 ASPX应用程序中

>>Essential Studio for Mobile MVC 2013最新版下载


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@cahobeh.cn

文章转载自:慧都控件

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP