Tickamount is extranous #3738
Unanswered
ronschokker
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I get this message:
/// apexcharts-card version 2.0.2 /// value.yaxis[0] is not a ChartCardYAxisExternal; value.yaxis[0].tickamount is extraneous
Below is my code. Removing 'tickamount: 1' results in a perfect graph.
`
type: custom:apexcharts-card
yaxis:
- min: 0
max: 0.5
tickamount: 1
show:
last_updated: true
graph_span: 48h
span:
start: day
now:
show: true
label: Nu
header:
show: true
title: Frank Energie | Prijs per uur (€/kwh)
series:
show:
legend_value: true
stroke_width: 5
name: Prijs
float_precision: 3
type: column
opacity: 0.3
color: '#03b2cb'
data_generator: |
return entity.attributes.prices.map((record, index) => {
return [record.from, record.price];
});
`
Beta Was this translation helpful? Give feedback.
All reactions