double get width => _width;
set width(double value) { assert(value >= 0 && value <= 1, 'The width of the series should be between 0 and 1'); if (value != _width) { _width = value; } }