This file contains hidden or 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
renderChartOn: html | |
| graphId graph | | |
graphId := html nextId. | |
html div class: 'chart'; id: graphId. | |
graph := Rickshaw graph element: graphId. | |
graph width: 300. | |
graph height: 200. | |
graph addSerieNamed: 'Demo' color: 'steelblue' elements: { 0 @ 40. 1 @ 49. 2 @ 38. 3 @ 30. 4 @ 32 }. | |
html document addLoadScript: graph |
This file contains hidden or 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
[ :s | Transcript show: s; show: s printString ] value: '[ :s | Transcript show: s; show: s printString ] value: ' |
This file contains hidden or 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
(ZnServer startDefaultOn: 1701) | |
onRequestRespond: [ :request | | |
ZnResponse ok: (ZnEntity text: 'Hello World!') ] |
NewerOlder