Mixed Charts - Line Column Area with Markers #2917
Unanswered
eliyahu-kriel
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
thanks for this great library!
i need to create a mixed chart like this:

i have 3 data sets,
one is the column data (blue color),
second is the markers data (black color)
and the third is the line data (grey color)
I tried, to combined the column graph with markers, and line column area
but i am get error (and of curse cent see the graph)
apexcharts.common.js?55c3:6 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'toString'
this is how i try to design my data, according the docs example above,
const seriesArray = [ { name: "Actual", data: [ { x: "SUN", y: 1, goals: [ { name: "Reference", value: 3, strokeHeight: 5, strokeColor: COLORS.black } ], type: "column" } ] }, { name: "Revenue", type: "line", data: [30] } ];
what i missing?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions