Replies: 1 comment
-
|
@sangdx Same issue here 🤔 Have you found a solution yet? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to draw shape with
IChartWidgetApi, first vertical line with timestamp now and second verify line but both of them is same position.#first vertical line
chart().createShape(
{ time: new Date().getTime() / 1000 },
{shape: 'vertical_line'}
);
#second vertical line
chart().createShape(
{ time: new Date().getTime() / 1000 + 60 },
{shape: 'vertical_line'}
);
Is there any other way to create a vertical line that can achieve my wishes, or if I do the above, how can I fix it?
Beta Was this translation helpful? Give feedback.
All reactions