Nikita TMM

Results 32 comments of Nikita TMM

@xtrmus tooltip built in klinechart-pro. RR overlay ```javascript import { OverlayTemplate, OverlayFigure, LineType } from 'klinecharts'; const LongPosition: OverlayTemplate = { name: 'longPosition', totalStep: 4, needDefaultPointFigure: true, needDefaultXAxisFigure: false, needDefaultYAxisFigure:...

```golang updates := bot.ListenForWebhook("/" + bot.Token) for update := range updates { if update.InlineQuery == nil { continue } result := tgbotapi.InlineQueryResultArticle{ Type: "article", ID: "*UNIQUE_ID*", Title: "Title", InputMessageContent: tgbotapi.InputTextMessageContent{...

https://github.com/liihuu/KLineChart/assets/70148117/bb9f8c49-bdc2-44cf-af43-7414f05d5cba

Best possible fix probably will be draw invisible candles all the way to the right. Sadly "performEventMoveForDrawing" do not provide kline data at all, so it really hard to implement...

I fixed it in my repo by updating it in `OverlayView.ts` function `_coordinateToPoint`: ```js if (this.coordinateToPointTimestampDataIndexFlag()) { const xAxis = chart.getPaneById(PaneIdConstants.XAXIS)?.getAxisComponent() as Axis const dataIndex = xAxis.convertFromPixel(coordinate.x) const timestamp =...

But its not a solution for the problem. If library can't handle it should force it by default.

Same issue as mine https://github.com/liihuu/KLineChart/issues/441, really necessary feature

@rascaler https://github.com/liihuu/KLineChart/issues/441#issuecomment-1591192893