statisticalGraphError property

StatisticalGraphError? statisticalGraphError

An error message to be shown to the user instead of the graph

Implementation

StatisticalGraphError? get statisticalGraphError {
  if (this is StatisticalGraphError) {
    return this as StatisticalGraphError;
  }
  return null;
}