HighchartsDataOptions constructor

HighchartsDataOptions({
  1. HighchartsCallback? beforeParse,
  2. List? columnTypes,
  3. List<List>? columns,
  4. String? columnsURL,
  5. HighchartsCallback? complete,
  6. String? csv,
  7. String? csvURL,
  8. double? dataRefreshRate,
  9. String? dateFormat,
  10. dynamic decimalPoint,
  11. bool? enablePolling,
  12. double? endColumn,
  13. double? endRow,
  14. bool? firstRowAsNames,
  15. String? googleAPIKey,
  16. String? googleSpreadsheetKey,
  17. String? googleSpreadsheetRange,
  18. String? googleSpreadsheetWorksheet,
  19. String? itemDelimiter,
  20. String? lineDelimiter,
  21. HighchartsCallback? parseDate,
  22. HighchartsCallback? parsed,
  23. List<List>? rows,
  24. String? rowsURL,
  25. List<Map<String, double>>? seriesMapping,
  26. double? startColumn,
  27. double? startRow,
  28. bool? switchRowsAndColumns,
  29. String? table,
})

The Data module provides a simplified interface for adding data to a chart from sources like CVS, HTML tables or grid views. See also the tutorial article on the Data module.

API Docs: https://api.highcharts.com/highcharts/data

Implementation

HighchartsDataOptions(
    {this.beforeParse,
    this.columnTypes,
    this.columns,
    this.columnsURL,
    this.complete,
    this.csv,
    this.csvURL,
    this.dataRefreshRate,
    this.dateFormat,
    this.decimalPoint,
    this.enablePolling,
    this.endColumn,
    this.endRow,
    this.firstRowAsNames,
    this.googleAPIKey,
    this.googleSpreadsheetKey,
    this.googleSpreadsheetRange,
    this.googleSpreadsheetWorksheet,
    this.itemDelimiter,
    this.lineDelimiter,
    this.parseDate,
    this.parsed,
    this.rows,
    this.rowsURL,
    this.seriesMapping,
    this.startColumn,
    this.startRow,
    this.switchRowsAndColumns,
    this.table});