| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "elements":[
- {
- "type": "scatter",
- "colour": "#FFB900",
- "text": "Avg",
- "font-size": 10,
- "dot-style": {"type":"solid-dot"},
- "values" : [
- {"x":-5, "y":-5, "tip":"HELLO" },
- {"x":0, "y":0, "colour":"#FF0000" },
- {"x":5, "y":5, "dot-size":20, "on-click":"trace:moooo"},
- {"x":5, "y":-5, "dot-size":5, "type":"hollow-dot"},
- {"x":-5, "y":5, "dot-size":5},
- {"x":0.5, "y":1, "dot-size":15}
- ]
- }
- ],
- "x_axis":{
- "offset": false,
- "min": -5,
- "max": 5/*,"labels":["mon","tue","wed","thur","fri","sat","sun"]*/
- },
- "y_axis":{
- "min": -5,
- "max": 5
- },
- "y_legend":{
- "text": "Time of day",
- "style": "{font-size: 20px; color: #736AFF;}"
- }
- }
|