Reputation: 1136
I have searched and experimented without any success till now. I have a line chart with date values on X-Axis. I would like to display only the start date and end date on the X-Axis. All other tickmarks and values should be hidden.
I see that there is an option to "Hide Start and End values" in the Chart properties. But how do I display only the Start and end date?
Any help appreciated! Thank you :)
Upvotes: 2
Views: 4047
Reputation: 3230
Please try the following steps :-
[First(Sale_Date)]
and in Maximum box type [Last(Sale_Date)]
.=datediff("d",first(Fields!OrderDate.Value),last(Fields!OrderDate.Value))
Please let me know if it worked. Thanks.
Upvotes: 1