javascript,extjs,extjs5,sencha-charts
The behavior you are after is, unfortunately, not configurable. However, there is always something that can be done about it. In this case you could implement a convert method for p1 field. The logic would find previous and next valid data and then would calculate an interpolation from them so...
@Samir, If you want a Grouped Chart which is non-stacked use stacked: false property in series. Modify the code of @MonicaOlejniczak as: legend :{ docked: right } series: { ....... ........ stacked: false, } This should solve your problem....
javascript,extjs,sencha-touch-2,sencha-charts
I found the solution. All i need to add was the chart height and width. width:400px; height:400px; xtype: 'chart', store: 'OcularPressure', flex: 5, layout: 'fit', animate: false, interactions: ['panzoom'] ...