• 大小: 0.53M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: MVC  ITextSharp  实例  C#  iText  

资源简介

c# mvc 雷达图 报表 itextsharp实例

资源截图

代码片段和文件信息

using System;
using System.Web.Helpers;
using System.Web.Mvc;

namespace MvcChartExample {
    public class ChartResult : ActionResult {
        private readonly Chart _chart;
        private readonly string _format;

        public ChartResult(Chart chart string format = “png“) {
            if (chart == null)
                throw new ArgumentNullException(“chart“);

            _chart = chart;
            _format = format;

            if (string.IsNullOrEmpty(_format))
                _format = “png“;
        }

        public Chart Chart {
            get { return _chart; }
        }

        public string Format {
            get { return _format; }
        }

        public override void ExecuteResult(ControllerContext context) {
            _chart.Writ

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-05-02 15:55  MvcChartExample\
     文件         935  2012-05-02 15:55  MvcChartExample\MvcChartExample.sln
     文件       35840  2012-05-03 15:17  MvcChartExample\MvcChartExample.suo
     目录           0  2012-05-03 14:20  MvcChartExample\MvcChartExample\
     目录           0  2012-05-02 15:55  MvcChartExample\MvcChartExample\App_Data\
     目录           0  2012-05-03 11:54  MvcChartExample\MvcChartExample\bin\
     文件       16384  2012-05-03 15:09  MvcChartExample\MvcChartExample\bin\Toowell.S50.Plugins.dll
     文件       42496  2012-05-03 15:09  MvcChartExample\MvcChartExample\bin\Toowell.S50.Plugins.pdb
     文件         835  2012-05-03 14:12  MvcChartExample\MvcChartExample\ChartResult.cs
     目录           0  2012-05-02 16:20  MvcChartExample\MvcChartExample\Content\
     文件        5324  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\Site.css
     目录           0  2012-05-03 13:55  MvcChartExample\MvcChartExample\Content\tempfiles\
     文件       19600  2012-05-03 15:15  MvcChartExample\MvcChartExample\Content\tempfiles\BarChart.jpeg
     文件       16161  2012-05-03 15:15  MvcChartExample\MvcChartExample\Content\tempfiles\ColumnChart.jpeg
     文件       15518  2012-05-03 15:15  MvcChartExample\MvcChartExample\Content\tempfiles\LineChart.jpeg
     文件       13103  2012-05-03 15:15  MvcChartExample\MvcChartExample\Content\tempfiles\PieChart.jpeg
     目录           0  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\
     目录           0  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\
     目录           0  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\
     文件         180  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-bg_flat_0_aaaaaa_40x100.png
     文件         178  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-bg_flat_75_ffffff_40x100.png
     文件         120  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-bg_glass_55_fbf9ee_1x400.png
     文件         105  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-bg_glass_65_ffffff_1x400.png
     文件         111  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-bg_glass_75_dadada_1x400.png
     文件         110  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-bg_glass_75_e6e6e6_1x400.png
     文件         119  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-bg_glass_95_fef1ec_1x400.png
     文件         101  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-bg_highlight-soft_75_cccccc_1x100.png
     文件        4369  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-icons_222222_256x240.png
     文件        4369  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-icons_2e83ff_256x240.png
     文件        4369  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-icons_454545_256x240.png
     文件        4369  2012-05-02 15:55  MvcChartExample\MvcChartExample\Content\themes\base\images\ui-icons_888888_256x240.png
............此处省略52个文件信息

评论

共有 条评论