Apex chart showing power today but has a 'Tail'

I want to show power usage today so set up the following code:

type: custom:apexcharts-card
header:
  show: true
  title: Household Power Consumption Today (kW)
  show_states: false
  colorize_states: true
series:
  - entity: sensor.electricity_meter_power
    stroke_width: 2
graph_span: 24h
span:
  start: day

However, it displays with a horizontal tail from now to midnight tonight at whatever is the most recent power level. It looks ugly.

How can I rid of it?

series:
  - entity: sensor.electricity_meter_power
    stroke_width: 2
    extend_to: now

Thank you.