SSRS - 如何在水平轴上显示日期
SSRS - How to show date on Horizontal Axis
我想把日期放在 X(水平轴)上。
按天简单计算销售额。
当前图表:
我知道怎么关闭图例了。使条形颜色相同也可能很好。但是我看不出还有什么办法可以得到约会。我确实尝试了标签选项卡,并输入了一个表达式“=Fields!WebOrderDate.Value”,但这并没有改变任何东西。
这是我当前的设置:
我的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)
我现在没有可用的 SSRS,但我认为您应该将 WebOrderDateTime 放在类别组而不是系列组下。
我想把日期放在 X(水平轴)上。 按天简单计算销售额。
当前图表:
我知道怎么关闭图例了。使条形颜色相同也可能很好。但是我看不出还有什么办法可以得到约会。我确实尝试了标签选项卡,并输入了一个表达式“=Fields!WebOrderDate.Value”,但这并没有改变任何东西。
这是我当前的设置:
我的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)
我现在没有可用的 SSRS,但我认为您应该将 WebOrderDateTime 放在类别组而不是系列组下。