使用C#和Excel进行报表开发(三)-生成统计图(Chart)5

来源:互联网 发布:python 隐马尔可夫模型 编辑:程序博客网 时间:2024/06/05 11:34
/**//// <summary>
/// 创建统计图         
/// </summary>

private void CreateChart()
{
    Excel.Chart xlChart 
= (Excel.Chart)ThisWorkbook.Charts.
        Add(Type.Missing, xlSheet, Type.Missing, Type.Missing);

    Excel.Range cellRange 
= (Excel.Range)xlSheet.Cells[11];
    xlChart.ChartWizard(cellRange.CurrentRegion,
        Excel.XlChartType.xl3DColumn, Type.Missing,
        Excel.XlRowCol.xlColumns,
10true ,
        
"访问量比较(dahuzizyd.cnblogs.com)""月份""访问量",
        
"");

    xlChart.Name 
= "统计";

    Excel.ChartGroup grp 
= (Excel.ChartGroup)xlChart.ChartGroups(1);
grp.GapWidth 
= 20;
    grp.VaryByCategories 
= true;

    Excel.Series s 
= (Excel.Series)grp.SeriesCollection(1);
    s.BarShape 
= XlBarShape.xlCylinder;
    s.HasDataLabels 
= true;

    xlChart.Legend.Position 
= XlLegendPosition.xlLegendPositionTop;
    xlChart.ChartTitle.Font.Size 
= 24;
    xlChart.ChartTitle.Shadow 
= true;
    xlChart.ChartTitle.Border.LineStyle 
= Excel.XlLineStyle.xlContinuous;
            
    Excel.Axis valueAxis 
= (Excel.Axis)xlChart.Axes(Excel.XlAxisType.xlValue, XlAxisGroup.xlPrimary);
    valueAxis.AxisTitle.Orientation 
= -90;

    Excel.Axis categoryAxis 
= (Excel.Axis)xlChart.Axes(Excel.XlAxisType.xlCategory, XlAxisGroup.xlPrimary);
    categoryAxis.AxisTitle.Font.Name 
= "MS UI Gothic";
}