zcaudate

Members
  • Content count

    3
  • Joined

  • Last visited

About zcaudate

  • Rank
    Forum Newbie
  1. I'm using the timeseries chart and would like to load data in an async manner so that more detailed data loads when the chart is at a certain magnification. Is the possible and if so, are there any links or examples that I can follow?
  2. 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' } } }] } } ```
  3. 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' } } }] } } ```