I'd like to draw a graph similar to this one using ZingChart:
The best I could do until now was this:
Souce:
{
"graphset": [{
"type": "line",
"series": [
{
"values":[[1,218.2], [2,121.7], [4,62.27], [8,34.37], [16,19.79], [20,16.52], [32,17.1], [40,16.11], [64,91.9]]
}
],
"scale-x":{
"values":[1,2,4,8,16,20,32,40,64]
}
}]
}
How can I fix the position of the x-ticks to be the same as the x-values?