14 lines
408 B
Smalltalk
14 lines
408 B
Smalltalk
|
accessing
|
||
|
quotesReportData
|
||
|
|
||
|
| tempDict labels xAxis |
|
||
|
tempDict := self quotesSortedByOccurrences.
|
||
|
labels := tempDict keys.
|
||
|
labels := labels collect: [ :profile | ($' asString), '@', profile, ($' asString) ].
|
||
|
xAxis := tempDict values.
|
||
|
xAxis := xAxis collect: [ :value | ($' asString), (value asString), ($' asString) ].
|
||
|
^ {
|
||
|
tempDict.
|
||
|
('[', (',' join: xAxis), ']').
|
||
|
('[', (',' join: labels), ']').
|
||
|
}
|