How can I show the climate set temp on my chart?

I’m comfortable showing the various temp sensors I have on a chart but now I also want to chart what the aircon set temp was at the same time… How do we gain access to the values of a climate item?

I don’t know how to get further than this…

type: custom:mini-graph-card
name: Living Room Temps 24h
smoothing: true
hours_to_show: 24
points_per_hour: 6
update_interval: 60
line_width: 1
animate: false
height: 100
entities:
  - sensor.gw1000_v1_7_5_outdoor_temperature
  - entity: sensor.atc_dd01_temperature
    show_fill: false
  - entity: sensor.atc_5803_temperature
    show_fill: false
  - entity: climate.daikin_192_168_20_14
    show_fill: false

If what you are looking for are climate attributes, see how to display attribute in this section

In mini-graph-card you can display graphs for entity state & entity attribute.
If “aircon set temp” is either a state or an attribute of some entity - then add it to the card by a corresponding way:

entities:
  - entity: sensor.xxx
  - entity: sensor.xxx
    attribute: yyy

Appreciate the help guys… Must admit the hardest part was identified the exact name of the attributes but I managed to do it by adding a single Entity card where we can pick attributes and then looking at the code.

This now works in my Mini Graph Card!

type: custom:mini-graph-card
name: Living Room Temps 24h
smoothing: true
hours_to_show: 24
points_per_hour: 6
update_interval: 60
line_width: 1
animate: false
height: 100
entities:
  - entity: sensor.gw1000_v1_7_5_outdoor_temperature
    name: Outdoor
  - entity: sensor.atc_5803_temperature
    name: Lounge
    show_fill: false
  - entity: climate.daikin_192_168_20_14
    name: AC Target
    attribute: temperature
show:
  graph: line
  average: true
  extrema: true
  labels: false