Status: New Owner: ---- Labels: Type-Defect Priority-Medium
New issue 1015 by usman.bh...@gmail.com: GraphET should support lineWidth and legend http://code.google.com/p/moose-technology/issues/detail?id=1015
Graphet should provide support for line width for line diagrams and a legend.
Comment #1 on issue 1015 by usman.bh...@gmail.com: GraphET should support lineWidth and legend http://code.google.com/p/moose-technology/issues/detail?id=1015
I played a bit and here is my proposal for: - for providing a lineWidth to the line diagrams - a legend implemented at the level of GETAbstractDiagram
There is an example too. Alex, can you have a look? For the legend, I think some charts do not need data for colors (for example, Pie chart). Anyhow, would be good to keep improving it.
Attachments: Graph-ET-usmanbhatti.89.mcz 46.7 KB
Sure I totally agree. Right now I'm a little bit swamped because of school, but Alex has pointed me out all the things that we should work on in the next Graph-ET update. I'll work on this asap, as soon as I finish all my exams -.-
Greetings! Daniel
Date: Tue, 19 Nov 2013 21:52:17 +0000 From: moose-technology@googlecode.com To: moose-dev@iam.unibe.ch Subject: [Moose-dev] Re: Issue 1015 in moose-technology: GraphET should support lineWidth and legend
Comment #1 on issue 1015 by usman.bh...@gmail.com: GraphET should support lineWidth and legend http://code.google.com/p/moose-technology/issues/detail?id=1015
I played a bit and here is my proposal for:
- for providing a lineWidth to the line diagrams
- a legend implemented at the level of GETAbstractDiagram
There is an example too. Alex, can you have a look? For the legend, I think some charts do not need data for colors (for example, Pie chart). Anyhow, would be good to keep improving it.
Attachments: Graph-ET-usmanbhatti.89.mcz 46.7 KB
-- You received this message because this project is configured to send all issue notifications to this address. You may adjust your notification preferences at: https://code.google.com/hosting/settings _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Ok, so, I added the lineWidth option. The legend is a little bit tricky, I'll work on it this week I think.
Daniel
From: daniel_avivnotario@hotmail.com To: codesite-noreply@google.com; moose-dev@iam.unibe.ch Date: Tue, 19 Nov 2013 21:29:15 -0300 Subject: [Moose-dev] Re: Issue 1015 in moose-technology: GraphET should support lineWidth and legend
Sure I totally agree. Right now I'm a little bit swamped because of school, but Alex has pointed me out all the things that we should work on in the next Graph-ET update. I'll work on this asap, as soon as I finish all my exams -.-
Greetings! Daniel
Date: Tue, 19 Nov 2013 21:52:17 +0000 From: moose-technology@googlecode.com To: moose-dev@iam.unibe.ch Subject: [Moose-dev] Re: Issue 1015 in moose-technology: GraphET should support lineWidth and legend
Comment #1 on issue 1015 by usman.bh...@gmail.com: GraphET should support lineWidth and legend http://code.google.com/p/moose-technology/issues/detail?id=1015
I played a bit and here is my proposal for:
- for providing a lineWidth to the line diagrams
- a legend implemented at the level of GETAbstractDiagram
There is an example too. Alex, can you have a look? For the legend, I think some charts do not need data for colors (for example, Pie chart). Anyhow, would be good to keep improving it.
Attachments: Graph-ET-usmanbhatti.89.mcz 46.7 KB
-- You received this message because this project is configured to send all issue notifications to this address. You may adjust your notification preferences at: https://code.google.com/hosting/settings _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
_______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
We have some deadline this week. Next week will be calmer. Thanks Usman to look into this.
Alexandre
Le 19-11-2013 à 18:52, moose-technology@googlecode.com a écrit :
Comment #1 on issue 1015 by usman.bh...@gmail.com: GraphET should support lineWidth and legend http://code.google.com/p/moose-technology/issues/detail?id=1015
I played a bit and here is my proposal for:
- for providing a lineWidth to the line diagrams
- a legend implemented at the level of GETAbstractDiagram
There is an example too. Alex, can you have a look? For the legend, I think some charts do not need data for colors (for example, Pie chart). Anyhow, would be good to keep improving it.
Attachments: Graph-ET-usmanbhatti.89.mcz 46.7 KB
-- You received this message because this project is configured to send all issue notifications to this address. You may adjust your notification preferences at: https://code.google.com/hosting/settings _______________________________________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Updates: Labels: ra
Comment #2 on issue 1015 by usman.bh...@gmail.com: GraphET should support lineWidth and legend http://code.google.com/p/moose-technology/issues/detail?id=1015
(No comment was entered for this change.)
Updates: Labels: -ra Component-Roassal
Comment #3 on issue 1015 by usman.bh...@gmail.com: GraphET should support lineWidth and legend http://code.google.com/p/moose-technology/issues/detail?id=1015
(No comment was entered for this change.)
Updates: Status: Fixed
Comment #4 on issue 1015 by alexandr...@gmail.com: GraphET should support lineWidth and legend http://code.google.com/p/moose-technology/issues/detail?id=1015
All these have been addressed recently.
Consider the pie and legend:
-=-=-=-=-=-=-=-=-=-=-=-= | b myClasses lb normalizer | myClasses := (Array with: Dictionary with: Collection with: Set with: OrderedCollection ).
b := RTPieBuilder new. b interaction popup. b objects: myClasses. b slice: #numberOfMethods. b globalRule distinctColor. b labelled. b emphasize: Set by: 20. b emphasize: Dictionary by: 20.
"Legend" lb := RTLegend2Builder new. lb view: b view. lb addText: 'Distribution of number of Methods in some classes'. normalizer := RTMultiLinearColorForIdentity new objects: myClasses. myClasses do: [ :aClass | lb addColor: (normalizer rtValue: aClass) text: aClass name. ]. lb build.
b open. -=-=-=-=-=-=-=-=-=-=-=-=
Comment #5 on issue 1015 by usman.bh...@gmail.com: GraphET should support lineWidth and legend http://code.google.com/p/moose-technology/issues/detail?id=1015
it works for me. tx.