HighchartsLangOptions constructor

HighchartsLangOptions({
  1. HighchartsLangAccessibilityOptions? accessibility,
  2. String? chartTitle,
  3. String? contextButtonTitle,
  4. String? decimalPoint,
  5. String? downloadCSV,
  6. String? downloadJPEG,
  7. String? downloadMIDI,
  8. String? downloadPDF,
  9. String? downloadPNG,
  10. String? downloadSVG,
  11. String? downloadXLS,
  12. dynamic drillUpText,
  13. String? exitFullscreen,
  14. HighchartsLangExportDataOptions? exportData,
  15. String? exportInProgress,
  16. String? hideData,
  17. String? invalidDate,
  18. String? loading,
  19. List<String>? locale,
  20. String? mainBreadcrumb,
  21. List<String>? months,
  22. HighchartsLangNavigationOptions? navigation,
  23. String? noData,
  24. double? numericSymbolMagnitude,
  25. List<String>? numericSymbols,
  26. String? pieSliceName,
  27. String? playAsSound,
  28. String? printChart,
  29. HighchartsLangRangeSelectorOptions? rangeSelector,
  30. String? rangeSelectorFrom,
  31. String? rangeSelectorTo,
  32. String? rangeSelectorZoom,
  33. String? resetZoom,
  34. String? resetZoomTitle,
  35. String? seriesName,
  36. List<String>? shortMonths,
  37. List<String>? shortWeekdays,
  38. HighchartsLangStockToolsOptions? stockTools,
  39. String? thousandsSep,
  40. String? viewData,
  41. String? viewFullscreen,
  42. String? weekFrom,
  43. List<String>? weekdays,
  44. String? yAxisTitle,
  45. String? zoomIn,
  46. String? zoomOut,
})

An object containing language-related strings and settings. A typical setup uses Highcharts.setOptions to make the options apply to all charts in the same page.

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

Implementation

HighchartsLangOptions(
    {this.accessibility,
    this.chartTitle,
    this.contextButtonTitle,
    this.decimalPoint,
    this.downloadCSV,
    this.downloadJPEG,
    this.downloadMIDI,
    this.downloadPDF,
    this.downloadPNG,
    this.downloadSVG,
    this.downloadXLS,
    this.drillUpText,
    this.exitFullscreen,
    this.exportData,
    this.exportInProgress,
    this.hideData,
    this.invalidDate,
    this.loading,
    this.locale,
    this.mainBreadcrumb,
    this.months,
    this.navigation,
    this.noData,
    this.numericSymbolMagnitude,
    this.numericSymbols,
    this.pieSliceName,
    this.playAsSound,
    this.printChart,
    this.rangeSelector,
    this.rangeSelectorFrom,
    this.rangeSelectorTo,
    this.rangeSelectorZoom,
    this.resetZoom,
    this.resetZoomTitle,
    this.seriesName,
    this.shortMonths,
    this.shortWeekdays,
    this.stockTools,
    this.thousandsSep,
    this.viewData,
    this.viewFullscreen,
    this.weekFrom,
    this.weekdays,
    this.yAxisTitle,
    this.zoomIn,
    this.zoomOut});