v1.6.0
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 newcolor_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).
Features
- config_tpl: Create a config template and use it everywhere with
config_templates
, apply the same config to every series withall_series_config
and addcolor_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