Re: [Pharo-users] Zoom x-axis in RTGrapher?

2018-03-29 Thread Alistair Grant
Hi Alexandre, On 29 March 2018 at 15:07, Alexandre Bergel wrote: > Easy. > > You can add a reset button: > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > v := RTView new. > b := [ :someClasses | >g := RTGrapher new. >g view: v. >ds := RTData new. >ds points: someClasses. >

Re: [Pharo-users] Zoom x-axis in RTGrapher?

2018-03-29 Thread Alexandre Bergel
Easy. You can add a reset button: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= v := RTView new. b := [ :someClasses | g := RTGrapher new. g view: v. ds := RTData new. ds points: someClasses. ds y: [ :cls | cls numberOfMethods ]. ds x: [ :cls | cls numberOfLinesOfCode

Re: [Pharo-users] Zoom x-axis in RTGrapher?

2018-03-29 Thread Alistair Grant
Hi Alexandre, Thanks! (more below) On 28 March 2018 at 14:56, Alexandre Bergel wrote: > Hi Alistair! > > Yes, this is something we thought about some times ago. > > After updating Roassal, try this: > -=-=-=-=-=-=-=-=-=-=-=-= > v := RTView new. > b := [ :someClasses | > g := RTGrapher n

Re: [Pharo-users] Zoom x-axis in RTGrapher?

2018-03-28 Thread Alexandre Bergel
Hi Alistair! Yes, this is something we thought about some times ago. After updating Roassal, try this: -=-=-=-=-=-=-=-=-=-=-=-= v := RTView new. b := [ :someClasses | g := RTGrapher new. g view: v. ds := RTData new. ds points: someClasses. ds y: [ :cls | cl