Roassal3
Roassal3 copied to clipboard
The Roassal Visualization Engine
By default the chart extent is squared. We can change it by a fixed extent. ```smalltalk chart := RSChart new. chart extent: 400@ 200. ``` But usually we would like...
In the following example, ```smalltalk rawData := DataFrame readFromCsv: (ZnClient new get: 'https://github.com/openZH/covid_19/blob/master/COVID19_Fallzahlen_CH_total.csv?raw=true'). grison := rawData reject: [ :row | (row at: #abbreviation_canton_and_fl) ~= 'GR' ]. dates := (grison column:...
The current tiling algorithm looks bad: some rectangles have a large aspect ratio. In addition, I am not sure that the current algorithm guarantees the stability and ordering of the...
When trying RSForceBasedLayout an exception happened. The initialLayout is RSGridLayout. The method doExecute: asks for 'horizontalGap', but that's nil. So here is my patch: "hgap := self horizontalGap. vgap :=...
2 problems with `RSSearchInCanvasInteraction >> isKeyForSearch:` because it requires: `evt commandKeyPressed` (see code down) - on non mac computers (ex: linux), the commandkey is not used, it is the control...
Currently this version is not working properly with load full version menu item. Complete the migration with @tinchodias and @bergel
There is a significant slowdown between between first and last commits in this new repo that seems to be caused by a combination of dirty rectangles and using `explicitRequirements`. The...
the current event processor for Roassal it contains some error when you do some interactions combinations. Roassal should change the event system processor to handle different combinations of events in...
I have to see the distributions of this data. I have 100,000 times the value `1`, 200,000 times the value `2` and 50,000 the value `3`. With the current implementation...