Aleksandr Shestakov

Results 354 comments of Aleksandr Shestakov

@kishantaretiya Do you mean in AnyChart.stock() chart or AnyChart.cartesian() with candlestick series? The stock chart provides a scroller with zooming as out-of-the-box. Here is [the sample of a Stock chart](https://github.com/AnyChart/AnyChart-Android/blob/master/sample/src/main/java/com/anychart/sample/charts/OHLCChartActivity.java).

@kishantaretiya It's possible too! You can create in UI buttons and in listeners call AnyChart API to manage chart settings. For example, for the Stock chart, you can call `selectRange()`...

@krishnamurthy12 Unfortunately, it's not possible to disable the plot controls in the current version of the library.

@fabiolacerda Unfortunately, the current version of the library doesn't support the possibility to implement the condition coloring according to custom fields. The fill function context doesn't provide API `this.getData('product')` or...

@swetachicky To show raw absolute values of the points one should override the default labels format like this: ``` Pie pie = AnyChart.pie(); pie.labels().format("{%value}"); // rest of chart configuration and...

@alihit96 Did I get your idea correctly that you are trying to update the existing chart data?

@alihit96 You should apply the new data to the chart. For details, please, [check this example](https://github.com/AnyChart/AnyChart-Android/issues/97#issuecomment-496357154). It describes how to add new data to the chart. If you are using...

@alihit96 Does it execute `getString ()` function every time you get new data? Or there's another handler for updating the chart?

@asif1261 There's no need to recreate the chart to update the data. All you need is to apply new data to the existing chart. The same issue was raised previously...

You simply should make the chart active and apply new data to the existing dataset. There's no need to recreate the chart: ``` APIlib.getInstance().setActiveAnyChartView(cartesian); set1.data({NEW_DATA}); ```