SSRS-如何在水平轴上显示日期

问题描述 投票:0回答:1

我想将日期放在X(水平轴)上。每天简单的销售计数。

当前图表:enter image description here

我了解如何关闭图例。使条形相同的颜色也可能会很好。但是我不知道该怎么做才能得到日期。我确实尝试了标签选项卡,并输入了一个表达式“ = Fields!WebOrderDate.Value”,但这没有任何改变。

以下是我当前的设置:enter image description here

我的SQL:

select CONVERT(date, WebOrderDateTime) as WebOrderDate, 
 Count(*) as Count 
from VendorTrackingViewRpt 
where PONum is not null and WebOrderDateTime is not null 
group by CONVERT(date, WebOrderDateTime)
order by CONVERT(date, WebOrderDateTime)
reportingservices-2005
1个回答
0
投票

我现在没有可用的SSRS,但是我认为您应该将WebOrderDateTime放在Category Groups而不是Series Groups下。

© www.soinside.com 2019 - 2024. All rights reserved.