15 lines
244 B
Smalltalk
15 lines
244 B
Smalltalk
Class {
|
|
#name : #EcSunburst,
|
|
#superclass : #Object,
|
|
#instVars : [
|
|
'segments'
|
|
],
|
|
#category : #'EchartsPharo-EchartsPharo'
|
|
}
|
|
|
|
{ #category : #accessing }
|
|
EcSunburst >> segments [
|
|
|
|
^ segments ifNil: [ segments := OrderedCollection new ].
|
|
]
|