Romain Francois
Romain Francois
Dont see any reasons not to merge this PR. @eugene-korobko, @kirchet any objections?
Hi @pietroaulisio ! Try setting the time as a unix-timestamp value instead. For instance for '2019-04-11' at 12h34mn you could use `1554986096` instead.
Dont see any objections in approving & merging this one. @eugene-korobko, @kirchet any comments?
Hi @quakemmo! Have you got a jsfiddle or something else where we could reproduce the issue and check how to fix it if possible?
Unfortunately that's not possible at the moment.
Not in the near future no but we've tagged this ticket to keep an eye on it.
Hi @andrewkenreich ! Apologies for the late (very) answer; Im not quite sure I follow the requirement here. Upon taking a screenshot a url corresponding to the image is generated...
We have 2 methods that deal with screenshots: - [takeScreenshot](https://github.com/tradingview/charting_library/wiki/Widget-Methods#takescreenshot) - [takeClientScreenshot](https://github.com/tradingview/charting_library/wiki/Widget-Methods#takeclientscreenshotoptions) Both are returning a Promise. Only the second one will return a HTML canvas element and the first...
Hi @Flydexo! Apologies for missing this one out :( Would you mind rebasing your PR and making sure it compiles OK? We would then review it and check if everything...
You could use [formatter](https://tradingview.github.io/lightweight-charts/docs/next/api#tickmarkformatter), like ``` timeScale: { tickMarkFormatter: (time) => { const date = new Date(time); return `${date.getHours()}:${date.getMinutes()}`; }, } ```