Pavel Posted June 11, 2014 Report Share Posted June 11, 2014 Hi I have a bit unusual data source: items = [ { "Date": "11 Jun", "Crew A": 500, "Crew B": 600 } , { "Date": "10 Jun", "Crew A": 550, "Crew B": 650 } , { "Date": "9 Jun", "Unknown": 700, "Unknown": 500 } ]; I don't see last bars on the chart with "Unknown" key What I did wrong? 1 Quote Link to comment Share on other sites More sharing options...
0 JuanC Posted July 2, 2014 Report Share Posted July 2, 2014 For performance reasons we only inspect the first object to query for its properties, so from our point of view your data source has 3 "fields": Date, CrewA and CrewB. So we create a chart with 3 points but for the last point the values for both series (CrewA and CrewB) are hidden/not shown. JuanC Quote Link to comment Share on other sites More sharing options...
Question
Pavel
Hi
I have a bit unusual data source:
items = [ {
"Date": "11 Jun",
"Crew A": 500,
"Crew B": 600
} , {
"Date": "10 Jun",
"Crew A": 550,
"Crew B": 650
} , {
"Date": "9 Jun",
"Unknown": 700,
"Unknown": 500
} ];
I don't see last bars on the chart with "Unknown" key
What I did wrong?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.