Hi all,
I think I found a bug in RTGrapher: it does not seem to respect the minX: axis setting when that value is bigger than 0. For example:
| b ds | b := RTGrapher new. ds := RTData new. ds points: #(2 3 4). b add: ds.
b minX: 1.
b build. ^ b view
-> x starts at 0.
But if I set it to a negative number (e.g. -1) the x axis does start at that value.
This is a problem for me, because I have data e.g. between +-20 and +-30 and this just looks ugly:
Can this be fixed? Thanks in advance!
-- Does this mail seem too brief? Sorry for that, I don’t mean to be rude! Please see http://emailcharter.org .
Johan Fabry - http://pleiad.cl/~jfabry PLEIAD and RyCh labs - Computer Science Department (DCC) - University of Chile
Hi!
Yes, Grapher assume that 0 @ 0 is always in the graph. If you want to change that, you can read Section 6 ("Translating the Y axis”), in https://dl.dropboxusercontent.com/u/31543901/AgileVisualization/Grapher/0203...
This will apply in your case. Let me know if the instruction are clear or not.
Cheers, Alexandre
On May 18, 2016, at 2:07 PM, Johan Fabry jfabry@dcc.uchile.cl wrote:
Hi all,
I think I found a bug in RTGrapher: it does not seem to respect the minX: axis setting when that value is bigger than 0. For example:
| b ds | b := RTGrapher new. ds := RTData new. ds points: #(2 3 4). b add: ds.
b minX: 1.
b build. ^ b view
-> x starts at 0.
But if I set it to a negative number (e.g. -1) the x axis does start at that value.
This is a problem for me, because I have data e.g. between +-20 and +-30 and this just looks ugly:
<PastedGraphic-1.jpg>
Can this be fixed? Thanks in advance!
-- Does this mail seem too brief? Sorry for that, I don’t mean to be rude! Please see http://emailcharter.org .
Johan Fabry - http://pleiad.cl/~jfabry PLEIAD and RyCh labs - Computer Science Department (DCC) - University of Chile
Moose-dev mailing list Moose-dev@list.inf.unibe.ch https://www.list.inf.unibe.ch/listinfo/moose-dev
Ah, OK I never thought to do it like this. It works, thanks!
But, then how about adding some comments to minX: and maxX: to clarify this?
-- Does this mail seem too brief? Sorry for that, I don’t mean to be rude! Please see http://emailcharter.org .
Johan Fabry - http://pleiad.cl/~jfabry PLEIAD and RyCh labs - Computer Science Department (DCC) - University of Chile
On May 19, 2016, at 11:12, Alexandre Bergel alexandre.bergel@me.com wrote:
Hi!
Yes, Grapher assume that 0 @ 0 is always in the graph. If you want to change that, you can read Section 6 ("Translating the Y axis”), in https://dl.dropboxusercontent.com/u/31543901/AgileVisualization/Grapher/0203...
This will apply in your case. Let me know if the instruction are clear or not.
Cheers, Alexandre
On May 18, 2016, at 2:07 PM, Johan Fabry jfabry@dcc.uchile.cl wrote:
Hi all,
I think I found a bug in RTGrapher: it does not seem to respect the minX: axis setting when that value is bigger than 0. For example:
| b ds | b := RTGrapher new. ds := RTData new. ds points: #(2 3 4). b add: ds.
b minX: 1.
b build. ^ b view
-> x starts at 0.
But if I set it to a negative number (e.g. -1) the x axis does start at that value.
This is a problem for me, because I have data e.g. between +-20 and +-30 and this just looks ugly:
<PastedGraphic-1.jpg>
Can this be fixed? Thanks in advance!
-- Does this mail seem too brief? Sorry for that, I don’t mean to be rude! Please see http://emailcharter.org .
Johan Fabry - http://pleiad.cl/~jfabry PLEIAD and RyCh labs - Computer Science Department (DCC) - University of Chile
Moose-dev mailing list Moose-dev@list.inf.unibe.ch https://www.list.inf.unibe.ch/listinfo/moose-dev
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Moose-dev mailing list Moose-dev@list.inf.unibe.ch https://www.list.inf.unibe.ch/listinfo/moose-dev
Done
Alexandre