| b ds events |
events := { 10.0 @ 1.0. 9.0 @ 2.0. 8.0 @ 3.0.
�� ��7.0 @ 4.0. 6.0 @ 5.0. 5.0 @ 6.0.
�� ��4.0 @ 7.0. 3.0 @ 8.0. 2.0 @ 9.0.
�� ��1.0 @ 10.0. 0.0 @ 11.0}.
b := RTGrapherBuilder new.
b extent: 400 @ 200.
ds := RTDataSet new.
ds dotShape circle color: Color red.
ds interaction fixedPopupText: [ :e | e printString ].
ds points: events.
ds connectColor: Color blue.
ds x: [ :e | e y ].
ds y: [ :e | e x ].
b add: ds.��
b axisXWithNumberOfTicks: events size.
^b build
--
Javier Pim��s
Ciudad de Buenos Aires