WebWrappers/Apps/EchartsPharo/EcSunburst.class.st

15 lines
244 B
Smalltalk
Raw Normal View History

2022-09-19 15:11:10 +00:00
Class {
#name : #EcSunburst,
#superclass : #Object,
#instVars : [
'segments'
],
#category : #'EchartsPharo-EchartsPharo'
}
{ #category : #accessing }
EcSunburst >> segments [
^ segments ifNil: [ segments := OrderedCollection new ].
2022-09-19 15:11:10 +00:00
]