Status: New Owner: usman.bh...@gmail.com CC: alexandr...@gmail.com Labels: Type-Defect Priority-Medium Component-Roassal
New issue 1122 by usman.bh...@gmail.com: Grapher - Exception for zero values https://code.google.com/p/moose-technology/issues/detail?id=1122
Exceptions should be managed in Grapher with all points are zero
To reproduce the problem in Moose 5.1:
grapher := RTGrapher new extent: 300 @ 200; title: 'testing zero values'; yourself. ds := RTDataSet new. ds dotShape ellipse color: (Color red alpha: 0.5); size: 10. ds points: {0->0. 0->0}; connectColor: (Color red alpha: 0.5); y: #value; x: #key; highlightIf: [:each | true] using: #value. grapher add: ds. grapher axisY decimal: 0; title: 'asdasd'. grapher axisX labelRotation: -30; title: ''; numberOfLabels: 2. grapher build.
Updates: Status: Fixed
Comment #1 on issue 1122 by alexandr...@gmail.com: Grapher - Exception for zero values https://code.google.com/p/moose-technology/issues/detail?id=1122
Fixed in Roassal2 956