Aleksandr Shestakov

Results 354 comments of Aleksandr Shestakov

@Nemunas Can you provide a piece of your data to reproduce the issue? Also, a screenshot of the resulting chart will be helpful.

@tanjunker You should implement a custom data entry that extends the ValueDataEntry, add the `fill` field in it. Then in the data, you can specify colors. For details, check [the...

@usama143-dev The chart configuration code is okay, but there's no definition of `CustomDataEntry` and the resulting data. Please, try to load the chart with dummy data applied manually from the...

@shreshth28 Can you provide the full chart configuration code?

@zeylevruntime For this purpose, you can use formatting parameters in a string token. Below is the snippet code: ``` Cartesian cartesian = AnyChart.area(); List seriesData = new ArrayList(); seriesData.add(new ValueDataEntry("A",...

@zeylevruntime Do you want to apply low and high values to the area? Make it a range-area?

@zeylevruntime The chart adjusts the yScale minimum automatically if the data includes negative values. Anyway, you can apply the yScale negative minimum manually. Like this: ``` chart.yScale().minimum(-2000); ```

@ifll The current version of the library v8.9.0 always provides clock-wise direction for the line rendering in the Polar chart. Unfortunately, there's no possibility to override this behavior.

@VedGaur2045 Do you want to render multiple area series or a single series but of the dates includes multiple values?