pixelsPerCellX property
double?
get
pixelsPerCellX
Measured pixels per cell column, when resolution is usable.
Implementation
double? get pixelsPerCellX {
final width = pixelWidth;
if (width == null || width <= 0 || columns <= 0) return null;
return width / columns;
}