/*
many points from a single set in the same location
many points from different sets in the same location
*/
{
"elements":[
{
"type": "scatter_line",
"dot-size": 10,
"tip": "Scatter 1
#x#, #y#",
"colour": "#000000",
"values" : [
{"x":-4, "y":-5, "tip":"HELLO 1" },
{"x":-4, "y":-2, "colour":"#FF0000" },
{"x":-4, "y":1, "dot-size":4},
{"x":3, "y":3, "dot-size":5},
{"x":3, "y":3, "colour":"#FF00FF", "dot-size":3},
{"x":3.5, "y":3.5, "dot-size":6},
{"x":4.9, "y":4.9, "dot-size":7}
]
},
{
"type": "scatter",
"dot-size": 10,
"tip": "Scatter 2
#x#, #y#",
"colour": "#000000",
"values" : [
{"x":-4, "y":-5, "tip":"HELLO 2" },
{"x":-4, "y":-2 },
{"x":-4, "y":-2, "dot-size":3 },
{"x":3, "y":3, "colour":"#FF00FF"}
]
}
],
"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;}"
}
}