File tree Expand file tree Collapse file tree
packages/devtools_app/lib/src/shared/charts Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ class PaintCharacteristics {
3434 this .concentricCenterDiameter = 1 ,
3535 this .width = 1 ,
3636 this .height = 1 ,
37+ this .fixedMinY,
3738 this .fixedMaxY,
3839 });
3940
@@ -47,9 +48,15 @@ class PaintCharacteristics {
4748 this .concentricCenterDiameter = 1 ,
4849 this .width = 1 ,
4950 this .height = 1 ,
51+ this .fixedMinY,
5052 this .fixedMaxY,
5153 });
5254
55+ /// If specified Y scale is computed and min value is fixed.
56+ /// Will assert if new data point is less than min specified.
57+ // ignore: unused-code, TODO(https://github.com/flutter/devtools/issues/9910) seems like a bug.
58+ double ? fixedMinY;
59+
5360 /// If specified Y scale is computed and max value is fixed.
5461 /// Will assert if new data point is more than max specified.
5562 double ? fixedMaxY;
You can’t perform that action at this time.
0 commit comments