编程语言
首页 > 编程语言> > c#-如何使用Crystal Report Visual Studio 2013在条形图中添加2系列

c#-如何使用Crystal Report Visual Studio 2013在条形图中添加2系列

作者:互联网

我在Visual Studio 2013中使用了水晶报表,并且不得不设计带有条形图的报表.

我已经合并了验证报告,并且必须显示2个系列的条形图.

我有这样的数据.

public class VerifiedCountData
{
    public List<VerifiedCountData>  GetDataList()
    {
       this.VerifiedCountList  = new List<VerfiedCountList>();

       this.VerifiedCountList.Add(new VerifiedCountData(new DateTime(2015,08,02),1,1));
       this.VerifiedCountList.Add(new VerifiedCountData(new DateTime(2015,08,03),5,0));
       this.VerifiedCountList.Add(new VerifiedCountData(new DateTime(2015,08,04),2,4));
       this.VerifiedCountList.Add(new VerifiedCountData(new DateTime(2015,08,05),6,2));

       return this.VerifiedCountList;
    }
    public VerifiedCountData(DateTime date, int yesCount, int noCount)
    {
        this.Date = date;
        this.YesCount = yesCount;
        this.NoCount = noCount;
    }

    public DateTime Date {get;set;}
    public int YesCount {get;set;}
    public int NoCount {get;set;}
    public List<VerifiedCountData> VerifiedCountList {get;set;}

}

这是我在囊肿报告中必须设计的内容.
请检查这张图片
https://www.dropbox.com/s/t9qjzcjxb80dugi/sample.png?dl=0

在“水晶报表设计”中,右键单击报表,然后转到“插入”选项并选择图表.

在图表“专家数据”选项卡布局中,数据在内部向上移动,表示“更改时”.我添加了两个字段,一个是YesCount,另一个是第二个NoCount,并在显示值中添加了日期字段.
这是图像说明我做了什么

https://www.dropbox.com/s/siy99mb3092m396/sample1.png?dl=0

但是当我运行结果是这样的时候

dropbox.com/s/dbb6aac3pxqeh3w/sample.3png.png?dl=0

谢谢

解决方法:

最后,我通过更改“图表专家>数据(标签)’

代替这个:

instead of this

its working right

标签:crystal-reports,asp-net,c,asp-net-mvc
来源: https://codeday.me/bug/20191119/2038926.html