-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
54 changed files
with
157 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/StatisticsWorkbench-Core.package/SWVector.class/instance/x.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
x | ||
|
||
^ self first | ||
^ self asPoint x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ubblePlot.class/instance/receiveValue..st → ...ubblePlot.class/instance/recieveValue..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
as yet unclassified | ||
receiveValue: aValue | ||
recieveValue: aValue | ||
|
||
self threshold: aValue. | ||
self update. |
2 changes: 1 addition & 1 deletion
2
...ges/StatisticsWorkbench-Diagrams.package/SWBubblePlot.class/instance/scaledBubbleSize..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
as yet unclassified | ||
scaledBubbleSize: aSize | ||
|
||
^ (aSize) / (self diagram globalMaximum: #z) * (self dynamicMaxBubbleSize) | ||
^ (aSize)/(self diagram globalMaximum: #z) * (self dynamicMaxBubbleSize) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...e/SWChart.class/instance/receiveValue..st → ...e/SWChart.class/instance/recieveValue..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
adding/removing | ||
receiveValue: aValue | ||
recieveValue: aValue | ||
|
||
^ self subclassResponsibility |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ages/StatisticsWorkbench-Diagrams.package/SWChartElement.class/instance/datapointIndex.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
datapointIndex | ||
|
||
^ datapointIndex | ||
^datapointIndex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/StatisticsWorkbench-Diagrams.package/SWChartElement.class/instance/round.to..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
...ages/StatisticsWorkbench-Diagrams.package/SWCoordinateSystem.class/class/defaultBounds.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
defaults | ||
defaultBounds | ||
|
||
^ (0 @ 0) corner: (0 @ 0) |
1 change: 1 addition & 0 deletions
1
packages/StatisticsWorkbench-Diagrams.package/SWCoordinateSystem.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 6 additions & 7 deletions
13
packages/StatisticsWorkbench-Diagrams.package/SWDiagram.class/instance/createIMGExportBtn.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
packages/StatisticsWorkbench-Diagrams.package/SWDiagram.class/instance/deleteChart..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
adding/removing | ||
deleteChart: aSWChart | ||
|
||
| chartType | | ||
|chartType| | ||
chartType := aSWChart class. | ||
self dataCollection remove: (aSWChart originalData). | ||
aSWChart delete. | ||
self charts do: [:aChart | aChart delete]. | ||
self charts do:[:aChart | aChart delete]. | ||
self charts removeAll. | ||
self visualizeAll: (self dataCollection) with: (chartType). | ||
self update |
6 changes: 2 additions & 4 deletions
6
packages/StatisticsWorkbench-Diagrams.package/SWDiagram.class/instance/extent..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
geometry | ||
extent: aPoint | ||
|width| | ||
width := 0. | ||
self submorphsDo: [:each | each class = SWKey ifTrue: [width := each submorphs last extent x]]. | ||
|
||
super extent: aPoint. | ||
self resizeCharts. | ||
self updateHPILogo. | ||
(self hasLegend) | ||
ifTrue:[self updateLegend.self updateLegend]. | ||
(self hasCoordinateSystem) | ||
ifTrue: [self coordinateSystem extent: aPoint - (width @ 20)]. | ||
ifTrue: [self coordinateSystem extent: aPoint]. | ||
(self hasChart) | ||
ifTrue: [self updateCharts] |
10 changes: 0 additions & 10 deletions
10
packages/StatisticsWorkbench-Diagrams.package/SWDiagram.class/instance/getTitleBarHeight.st
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
packages/StatisticsWorkbench-Diagrams.package/SWLineChart.class/class/defaultStepInterval.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
defaults | ||
defaultStepInterval | ||
|
||
^ 3 |
2 changes: 1 addition & 1 deletion
2
packages/StatisticsWorkbench-Diagrams.package/SWLineChart.class/instance/add..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
adding/removing | ||
add: aSWVector | ||
|
||
self vertices add: aSWVector asPoint. | ||
self vertices add: aSWVector key asPoint. | ||
self changed: self |
Oops, something went wrong.