Forum Discussion
Turf03
Helper II
6 years agoIdentify significant dates on a line chart
Is there a way to insert a line or a call out on specific dates on a line chart. I'd like to point out significant dates.
- 6 years ago
v-xicai
Community Support
6 years agoHi Turf03 ,
You may insert Shapes (such as line or Triangle) into the specific location which you want on Axis of chart, and it is not dynamic as explained. See the attached screenshot.
In addition, you may try to use a combination chart.
- Create a "line and stacked column chart"
- Put column [Date] into shared axis , and put [values] into line values.
- Create a measure that evaluates to the maximum value when Date=specific date(otherwise blank), put this measure into column values.
You may create measure like DAX below:
Specific Date line = IF ( VALUES ( Table1[Date] ) = DATE ( 2020, 9, 1 ), MAXX ( ALL ( Table1[Date] ), MAX ( Table1[Sales] ) ))
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.