Oleksandr Zaitsev

Results 101 issues of Oleksandr Zaitsev

It is very important to control the following: ```st chart gridLines. chart horizontalGridLines. chart verticalGridLines. chart majorGridLines. chart majorHorizontalGridLines. chart majorVerticalGridLines. chart minorGridLines. chart minorHorizontalGridLines. chart minorVerticalGridLines. ``` Some examples:...

chart

At the moment, we use scroll to zoom-in and zoom-out. And we use mouse drag-n-drop for moving. To be consistent with OS (and browsers), I suggest to use horizontal and...

In Mac (and I think also in other OS, as well as in browsers), there are standard keyboard shortcuts for zooming: - `Cmd +` to zoom in - `Cmd -`...

Example: ```st x := -10.0 to: 20.0 count: 100. chart := RSChart new add: (RSScatterPlot new x: x y: (x raisedTo: 3)); add: (RSLinePlot new x: x y: (x raisedTo:...

chart

This method has 107 lines of code. Also it does not have a test associated with it. I think it needs several tests to cover different scenarios. And then it...

Testing
Refactoring

```st CMEntity >> entityName " Answer a with the entity name without prefixes ('CM' and the model name)" ^ (self name beginsWith: 'CM') ifTrue: [ ((self name allButFirst: 2) beginsWith:...

good first issue

For example, ```st CMSpaceModel >> line " Answer the of lines of the receiver's grid " ^ line ifNil: [ line := self defaultLines ] ``` ```st CMSpaceModel >> column...

Refactoring
good first issue

The following methods need to be rewritten in such a way that we can test them (i.e., programmatically select a value in a dialog window): - `CMModelOpener >> requestNameLocation` -...

Testing
good first issue

1. Create a Spec presenter for exporting the table of probes into a file. It should allow the following settings: - Select a directory and a file name - Select...

UI
good first issue