Problem with scatter chart

Hi,
i have a problem with scatter chart, the propriety “tooltip” dosen’t show nothing and the propriety “origin” don’t changes the data’s view, can you help me ?

CODE SNIPPET:
….
var chartConfig =({
view:“scatter”,
container: “chart1”,
yValue:“#day#”,
xValue:“#item#”,
tooltip:{template:“#note#”, dx:10, dy:15},
item:{radius:5, type:“d”, shadow: true, borderColor:function(obj){return borders[obj.tipo]}, borderWidth:1, color:function(obj){return colors[obj.tipo]}},
origin:0,
offset: 0,
yAxis:{ start:-6, step:2, end:10},
legend:{
layout:“y”,
width: 92,
align:“right”,
valign:“middle”,
values:legendValues
}
});
…….

Thanks for your answer

Hi,

“origin” property can be used only in Bar and Line charts. Scatter chart does not support it.

We have reproduced the problem with tooltip. We will fix it. Before the chart is updated, please set eventRadius property to solve the problem:

{
view:“scatter”,
eventRadius:5,

}