Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
1 year ago
Solved

Periods seperation

Hello Community, I'm working with a Line and Clustered Column Chart that includes multiple measures. I'm looking for a way to visually distinguish different "YYYYMM" periods within the chart. As fa...
  • jaineshp's avatar
    1 year ago

    Hey Anonymous,

    Visual Separation Options:

    • Add vertical reference lines - Insert calculated columns with null values at period boundaries, creates natural gaps between months/quarters
    • Alternating data point styling - Use conditional formatting to alternate colors every 2-3 periods (e.g., Jan-Mar in blue, Apr-Jun in purple)
    • Period grouping with spacing - Group your YYYYMM values and add small gaps using DAX measures that return BLANK() at transition points
    • Dual-axis workaround - Create a secondary line series that acts as period markers, set to minimal opacity

    Quick Implementation:

    The easiest is probably the reference line method - just add a measure that returns NULL at your desired break points (like every 6 months). This creates visual white space without needing custom visuals.

    Alternative Chart Types:

    If flexibility is crucial, consider switching to a custom visual like Zebra BI or ZoomCharts which offer better period separation controls.

     

    Fixed? ✓ Mark it • Share it • Help others!


    Best Regards,
    Jainesh Poojara | Power BI Developer

  • Shahid12523's avatar
    1 year ago

    - Custom X-axis labels: Add blank or spacer categories to break up time blocks.
    - Color-coded columns: Use different colors for each period (e.g., quarterly).
    - Period marker line: Add a measure that spikes at period boundaries.
    - Custom visuals: Use Deneb or Charticulator for shaded bands or vertical lines.