Hi, great card, very useful and really well done. Thank you
I’m having an issue though when plotting light data with a logarithmic y-axis. The data ranges between ~100,000 and ~0.001, all the data above 1 plots fine, the data below 1 does not. It looks like the plots will only go down to 1, am I missing something or is this a bug?
It can be shown by the following card
type: custom:apexcharts-card
y_axis_precision: 3
header:
show: true
title: ApexCharts-Card
show_states: true
colorize_states: true
yaxis:
- id: first
apex_config:
logarithmic: true
forceNiceScale: false
series:
- entity: sun.sun
yaxis_id: first
data_generator: >-
const data = [[moment(),1000],[moment().subtract(1,
'hours'),100],[moment().subtract(2, 'hours'),10],[moment().subtract(3,
'hours'),1],[moment().subtract(4, 'hours'),0.1],[moment().subtract(5,
'hours'),0.01],[moment().subtract(6, 'hours'),0.1],[moment().subtract(7,
'hours'),1],[moment().subtract(8, 'hours'),10],[moment().subtract(9,
'hours'),100],[moment().subtract(10, 'hours'),1000]]; return data;