Skip to content

Releases: RomRider/apexcharts-card

v1.7.1

17 Feb 11:23

Choose a tag to compare

1.7.1 (2021-02-17)

Bug Fixes

  • Disable support for colors with alpha channel (#91) (522363a), closes #90
  • color_threshold: Sometimes it would break the card (65b5419)

v1.7.1-dev.2

16 Feb 18:29

Choose a tag to compare

v1.7.1-dev.2 Pre-release
Pre-release

1.7.1-dev.2 (2021-02-16)

Bug Fixes

  • Disable support for colors with alpha channel (#91) (522363a), closes #90

v1.7.1-dev.1

16 Feb 11:15

Choose a tag to compare

v1.7.1-dev.1 Pre-release
Pre-release

1.7.1-dev.1 (2021-02-16)

Bug Fixes

  • color_threshold: Sometimes it would break the card (65b5419)

v1.7.0

16 Feb 00:04

Choose a tag to compare

1.7.0 (2021-02-16)

Highlights

  • ⬇️⬆️ Show extremas on your chart with (doesn't work yet with multi-y axis):

    series:
      - entity: sensor.temperature
        show:
          extremas: true

    image

  • 🌎 Language support with automatic detection

  • ⚠️ Deprecate hours_12 in favor of automatic detection using HA's configured language or what is set in the locale config option.

Features

  • datalabels: Option to display total when chart is stacked (#75) (e1c5b01), closes #73
  • experimental: Header color can now follow color_threshold (#88) (074bfc3), closes #78
  • locale: Inherit locale from Home-Assistant, deprecate hours_12 (#70) (af2d201), closes #68
  • series.show: Display your serie's extremas on the chart (#85) (f64169a)
  • series.show: Option to show the raw data in the header (#76) (87b56f5), closes #69
  • transform: Provide the full state as entity to the function (#77) (9919c10), closes #71

Bug Fixes

  • config_templates: Was supposed to support a string (f36d9b1), closes #87
  • color with alpha would render area opaque (100b6d4)
  • Support for rgba colors (7ecfafd)
  • truncate floats in total datalabels (917a20a), closes #73
  • Wrong labels in tooltip in some cases (8f0aca1)

Documentation

  • Better info about month and year as offset units (c194f87), closes #65
  • config_templates: Fix wrong config example (ea1fef4)
  • Card is now available in HACS by default (1200abd)

v1.7.0-dev.4

15 Feb 23:43

Choose a tag to compare

v1.7.0-dev.4 Pre-release
Pre-release

1.7.0-dev.4 (2021-02-15)

Features

  • experimental: Header color can now follow color_threshold (#88) (074bfc3), closes #78

Bug Fixes

  • config_templates: Was supposed to support a string (f36d9b1), closes #87

Documentation

  • Better info about month and year as offset units (c194f87), closes #65

v1.7.0-dev.3

15 Feb 17:35

Choose a tag to compare

v1.7.0-dev.3 Pre-release
Pre-release

1.7.0-dev.3 (2021-02-15)

Features

  • series.show: Display your serie's extremas on the chart (#85) (f64169a)

Bug Fixes

  • color with alpha would render area opaque (100b6d4)
  • Support for rgba colors (7ecfafd)
  • truncate floats in total datalabels (917a20a), closes #73

v1.7.0-dev.2

10 Feb 21:00

Choose a tag to compare

v1.7.0-dev.2 Pre-release
Pre-release

1.7.0-dev.2 (2021-02-10)

Features

  • series.show: Option to show the raw data in the header (#76) (87b56f5), closes #69
  • transform: Provide the full state as entity to the function (#77) (9919c10), closes #71

Bug Fixes

  • Wrong labels in tooltip in some cases (8f0aca1)

v1.7.0-dev.1

10 Feb 15:36

Choose a tag to compare

v1.7.0-dev.1 Pre-release
Pre-release

1.7.0-dev.1 (2021-02-10)

Features

  • datalabels: Option to display total when chart is stacked (#75) (e1c5b01), closes #73
  • locale: Inherit locale from Home-Assistant, deprecate hours_12 (#70) (af2d201), closes #68

Documentation

  • config_templates: Fix wrong config example (ea1fef4)
  • Card is now available in HACS by default (1200abd)

v1.6.0

08 Feb 17:18

Choose a tag to compare

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)

v1.6.0-dev.2

08 Feb 12:19

Choose a tag to compare

v1.6.0-dev.2 Pre-release
Pre-release

1.6.0-dev.2 (2021-02-08)

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