chartUsesExternalDataModel function

bool chartUsesExternalDataModel(
  1. ChartType type
)

Returns true when type is parsed by a chart-specific data model instead of generic series validation.

Implementation

bool chartUsesExternalDataModel(ChartType type) =>
    _externalDataModelTypes.contains(canonicalChartType(type));