TimeScale constructor

TimeScale({
  1. TimeDisplayFormat displayFormats,
  2. bool isoWeekday,
  3. String max,
  4. String min,
  5. dynamic parser,
  6. String round,
  7. String tooltipFormat,
  8. String unit,
  9. num unitStepSize,
  10. String minUnit,
  11. String type,
  12. bool display,
  13. String position,
  14. GridLineOptions gridLines,
  15. ScaleTitleOptions scaleLabel,
  16. TickOptions ticks,
  17. List<ChartXAxe> xAxes,
  18. List<ChartYAxe> yAxes,
})

Implementation

external factory TimeScale(
    {TimeDisplayFormat displayFormats,
    bool isoWeekday,
    String max,
    String min,
    dynamic /*String|Func1<dynamic, dynamic>*/ parser,
    String /*'millisecond'|'second'|'minute'|'hour'|'day'|'week'|'month'|'quarter'|'year'*/ round,
    String tooltipFormat,
    String /*'millisecond'|'second'|'minute'|'hour'|'day'|'week'|'month'|'quarter'|'year'*/ unit,
    num unitStepSize,
    String /*'millisecond'|'second'|'minute'|'hour'|'day'|'week'|'month'|'quarter'|'year'*/ minUnit,
    String /*'category'|'linear'|'logarithmic'|'time'|'radialLinear'|String*/ type,
    bool display,
    String /*'left'|'right'|'top'|'bottom'|String*/ position,
    GridLineOptions gridLines,
    ScaleTitleOptions scaleLabel,
    TickOptions ticks,
    List<ChartXAxe> xAxes,
    List<ChartYAxe> yAxes});