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), ']'). }