- When I've created a new bar chart with 2 consecutive values. The ratio of bar chart columns are seem to be wrong.
For example: The 2 values is 6 and 7:
var blogComments = [ {
"blog": "My blog",
"day": "1",
"value": 6,
"userColor": "#ffd600"
}, {
"blog": "My blog",
"day": "2",
"value": 7,
"userColor": "#ffd600"
}, ];
You can't see example in the link: http://dojo.telerik.com/@hakm/uRIvU
- In fact, it's happend in case of having 2 consecutive values. Therefore; if you have more than two values but only having 2 consecutive values.
For instance: 7,7,7,8,8 => Having 5 values but only 2 consecutive numbers, namely 6 and 7
var blogComments = [ {
"blog": "My blog",
"day": "1",
"value": 7,
"userColor": "#ffd600"
}, {
"blog": "My blog",
"day": "2",
"value": 7,
"userColor": "#ffd600"
}, {
"blog": "My blog",
"day": "1",
"value": 7,
"userColor": "#ffd600"
}, {
"blog": "My blog",
"day": "2",
"value": 8,
"userColor": "#ffd600"
}, {
"blog": "My blog",
"day": "1",
"value": 8,
"userColor": "#ffd600"
} ];
You can see it in the link: http://dojo.telerik.com/@hakm/evucuG
- It's only happend when having only 2 consecutive values.
- So what is wrong with it? someone can show me a solution? I can't find any solution in the case :(