Apexcharts format help

I have several clients similar to this


Here is the code
`type: custom:apexcharts-card
chart_type: pie
header:
show: true
title: Watts
show_states: true
colorize_states: true
series:

  • entity: sensor.a_c_1_a_c_2_1min
    name: A/C
    color: ‘#0000FF
  • entity: sensor.balance_1min
    name: Balance
    color: ‘#A82BE2
  • entity: sensor.bedroom_lights_14_1min
    name: Bedroomm
    color: ‘#89CFF0
  • entity: sensor.dishwasher_5_1min
    name: Dishwaasher
  • entity: sensor.dryer_1_dryer_2_1min
    name: Dryer + Washer
    color: ‘#EFEEEE
  • entity: sensor.furnace_6_1min
    name: Furnace
    color: ‘#FF0000
  • entity: sensor.garage_15_1min
    name: Garage
    color: ‘#008000
  • entity: sensor.kitchen_lights_1_1min
    name: Kitchen
    color: ‘#E8F48C
  • entity: sensor.living_room_bath_16_1min
    name: Living Room
    color: E6E6FA
  • entity: sensor.microwave_13_1min
    name: Microwave
    color: ‘#A2E488
  • entity: sensor.refrigerator_2_1min
    name: B color: ‘#B76E79
  • entity: sensor.smoke_alarm_4_1min
    name: Smoke Detectors
    color: ‘#FA8072
    `
    The bottom and top portions are obviously the same but the bigger text on top is far easier on my aging eyes. The bottom still consumes valuable screen space. It seems like a simple solution but is there a way to get rid of the bottom portion?

Answer…use this:

apex_config:
  legend:
    show: false

Tip: there is a huge apexcharts post which can help with questions

Thank you for the tip and the code, it worked perfectly.