Hey, danke … das mit dem customizing der Entities probier ich mal aus. Wäre mir deutlich lieber, als die vorhandenen Entitäten zu duplizieren.
Die grafische Auswertung nach Monaten kannst du mit Apex-Charts aus dem HACS store erreichen. Hier mein Code für das Chart oben.
Code
		
					
			type: custom:apexcharts-card
header:
  show: true
  title: Gefahrene Kilometer
  show_states: true
  colorize_states: true
graph_span: 5month
span:
  end: month
apex_config:
  dataLabels:
    background:
      enabled: true
      borderWidth: 0
      opacity: 0
      foreColor: black
    dropShadow:
      enabled: true
      color: '#000'
      opacity: 0.3
    style:
      fontSize: 14px
      fontWeight: normal
  plotOptions:
    bar:
      borderRadius: 6
      borderRadiusApplication: end
      dataLabels:
        position: top
  chart:
    height: 200px
    dropShadow:
      enabled: true
      opacity: 0.3
  grid:
    padding:
      top: 0
      right: 0
      bottom: 0
      left: 0
    yaxis:
      lines:
        show: false
  legend:
    show: false
  xaxis:
    labels:
      datetimeFormatter:
        month: ''
        day: MMMM
    tooltip:
      enabled: false
  tooltip:
    enabled: false
all_series_config:
  type: column
  show:
    datalabels: true
yaxis:
  - id: left
    min: 0
    show: false
series:
  - entity: sensor.i3s_120_mileage
    name: monatlich i3s
    color: '#2adea8'
    opacity: 0.9
    show:
      in_header: false
    statistics:
      type: change
      period: month
      align: middle
  - entity: sensor.i3s_120_mileage
    name: gesamt BMW i3s
    color: '#2adea8'
    opacity: 0.9
    show:
      in_chart: false 
		 
				
	 
									
		 
 
