We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Joe,
Do you have an idea how i can implement multiple series, from a sencha store or multiple ones if needed ?
say my json has this structure:
{ item_id: temp1, ts = datevalue, value = 10.1 }, { item_id: temp2, ts = datevalue, value = 10.7 }
is your component fit to place this in a single chart, can you point me in any direction ?
The text was updated successfully, but these errors were encountered:
Hi,
No. You format is suggesting multiple series with independent x-axis data. The only support format is:
temp1: [ [ datevalue, 10.1 ], [ .... ] ], temp2: [ [ datevalue, 10.7 ], [ .... ] ].
If you have to keep to that format, the only thing I can think is to have another JsonStore in between to convert the format.
Thanks Joe
On 25 March 2016 at 15:39, salorob [email protected] wrote:
Hi Joe, Do you have an idea how i can implement multiple series, from a sencha store or multiple ones if needed ? say my json has this structure: { item_id: temp1, ts = datevalue, value = 10.1 }, { item_id: temp2, ts = datevalue, value = 10.7 } is your component fit to place this in a single chart, can you point me in any direction ? — You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub #37
— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub #37
Sorry, something went wrong.
No branches or pull requests
Hi Joe,
Do you have an idea how i can implement multiple series, from a sencha store or multiple ones if needed ?
say my json has this structure:
{ item_id: temp1,
ts = datevalue,
value = 10.1 },
{ item_id: temp2,
ts = datevalue,
value = 10.7 }
is your component fit to place this in a single chart, can you point me in any direction ?
The text was updated successfully, but these errors were encountered: