You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if it is implemented. Checked the source code but can not figure this out.
I am creating Long / Short Shapes where I place one point p0 on the chart and other points p1, p2, p3 are placed automatically (totalStep is 2) and can be edited later:
Everything is working good but the problem is when I want to restore the shape from JSON object
chart.createShape({
"name":"Long",
"points":[
{"timestamp":1660244400000,"value":23479.64023722628,"dataIndex":715},
{"value":23479.64023722628,"dataIndex":735},
{"value":23279.64023722628,"dataIndex":715},
{"value":23679.64023722628,"dataIndex":715}
],
onMouseEnter: function ({ id, event }) {
$("canvas").css("cursor", "pointer");
},
onMouseLeave: function ({ id, event }) {
$("canvas").css("cursor", "default");
},
onRemove: function ({ id }) {
$("canvas").css("cursor", "default");
},
});
Feature Description
Not sure if it is implemented. Checked the source code but can not figure this out.
I am creating Long / Short Shapes where I place one point p0 on the chart and other points p1, p2, p3 are placed automatically (totalStep is 2) and can be edited later:
Everything is working good but the problem is when I want to restore the shape from JSON object
To Do
shape Long :
my questions are:
The text was updated successfully, but these errors were encountered: