zcaudate Report post Posted May 12, 2020 I'm using the time series plots with Vue and when the graph loads there are lines but when I zoom in to a certain magnification, the lines disappear. I'm not sure if this is a bug or a customisation trick that I'm not seeing. The following is the configuration. Please help. ``` { width: '700', height: '600', type: 'timeseries', dataFormat: 'json', dataSource: { chart: { multiCanvas: true, theme: 'gammel' }, navigator: { enabled: 0 }, data: fusionTable, caption: { text: 'MVP' }, subcaption: { text: 'Giannis' }, series: 'Player', yAxis: [{ plot: { value: 'Yes', type: 'line' }, format: { round: 0 }, // min: '0', // max: '1000', title: '', orientation: 'right', showGridband: '1', style: { line: { 'stroke-width': '3' }, // Style 'grid-band': { fill: '#f5f5ef' } } }] } } ``` Share this post Link to post Share on other sites
Munish Report post Posted January 31, 2021 @zcaudate did you get a fix for this? I am also facing the exact same issue. let me know if you already have found a solution. Thank You, Munish Share this post Link to post Share on other sites
Srishti Jaiswal Report post Posted February 3, 2021 Hi zcaudate, We would suggest you to modify the data binning as per the granularity of you data to connect the disconnected data points for the line plot type in the FusionTime chart as per your requirement. Sample for your reference: https://codesandbox.io/s/ft-binning-sample-6x0nv?file=/src/App.vue Documentation reference:https://www.fusioncharts.com/dev/fusiontime/getting-started/change-default-aggregation#change-data-binning Hope this will help. Thanks, Srishti Share this post Link to post Share on other sites