Aleksandr Shestakov

Results 354 comments of Aleksandr Shestakov

@pathvine Spaces left by the after hours for intraday charts and weekends/holidays are an essential part of scatter mode. In the scatter mode every point is placed on the chart...

@pathvine Unfortunately, we didn't succeed to reproduce the same issue using built-in technical indicators. Please, can you provide us a sample with Supertrend indicator to let us investigate the issue?

@pathvine Great! Thank you for the detailed description, we will use this report in to fix the issue. Yes, it seems that all these issues come from using extended gaps....

@sujatakhatal53 If you want to hide labels under every bar you can achieve that very easy. Just add the following line to your code: `chart.labels(false);`

@Kvarkas The default layout is applied by the algorithm and you can't override its behavior. To achieve the desired layout, you can use [the fixed layout type](https://docs.anychart.com/Basic_Charts/Network_Graph#layout).

@Kvarkas Sure, you can generate coordinates as you need. It's totally up to you.

In the fixed layout simply apply static coordinates. In forced layout, the position depends on the structure of the data and positions are applied by the algorithm. The way you...

Coordinates are relative. You should place the central node in the center among other nodes.

@tr14466 In case, when you need to listen to only scroller actions you can use `scrollerChange` event. If you need to handle mouse drag too, which means visible range change,...

@BH-yasmine If you are trying to apply new scale type, you should call it like a constructor function, like this: `this.chart.xScale(anychart.scales.ordinal());` Anyway, if you are using a Cartesian chart, then...