github RomRider/apexcharts-card v1.6.0

latest releases: v2.0.4, v2.0.4-dev.1, v2.0.3...
3 years ago

1.6.0 (2021-02-08)

Highlights:

  • ⚠️ People using:

    apex_config:
      stroke: 
        width: [1,2]

    should convert it into:

    series:
      - entity: x.y
        stroke_width: 1
      - entity: y.z
        stroke_width: 2
  • ⚠️ People using:

    apex_config:
      fill:
        opacity: [1, 0.2]

    should convert it into:

    series:
      - entity: x.y
        opacity: 1
      - entity: y.z
        opacity: 0.2
  • config_templates: Define a chart template once, reuse it many times. Also useful with the new color_list option.

  • all_series_config: Apply one config to all series at the same time

  • 🧪 Experimental stuff 🧪: This is new and you'll have to opt-in to use the features as they break some other features (listed in the documentation).

    • color_threshold to display rainbows 🦄
      Screenshot 2021-02-07 103212
    • disable_config_validation: to break the configuration
    • hidden_by_default: It will toggle a serie initially as if you had clicked on the legend

Features

  • config_tpl: Create a config template and use it everywhere with config_templates, apply the same config to every series with all_series_config and add color_list to define your color list in one shot (#64) (17004a3)
  • experimental: hidden_by_default to toggle series on load (#62) (63717b7), closes #60
  • series: Define the opacity of the line or area (8dfb3fd), closes #57
  • add stroke_width and experimental color_threshold/disable_config_validation (fcdfa88), closes #58

Bug Fixes

  • color_threshold: opacity for color_threshold (5a325f4)
  • func: median was sometimes wrong (c36dda7)

Don't miss a new apexcharts-card release

NewReleases is sending notifications on new releases.