Aleksandr Shestakov
Aleksandr Shestakov
@punkratz312 We never tried charts with Polymer 3.0, but if the `ready` callback function is called when the DOM is ready then there's no need in `anychart.onDocumentLoad()`. You can just...
@OhioGuy67 Are you trying to override tooltip style via CSS? Unfortunately, the AnyChart library doesn't support styling with CSS, you should use JS API methods to adjust the tooltip appearance....
@tr14466 The 1st and 2nd problem occurs only in the playground. You can run your charts locally and it will solve the issue. The playground website uses some modern solutions...
@tr14466 A few more steps required to enable loading exports via IE11. 1) Add the following line to rout the local running sample to the export server: ``` anychart.exports.server(https://export.anychart.com); ```...
@zantdev Could you specify which chart type do you use for this purpose? Basically, chart dispatches redraw event every time a new point is added to the chart. You can...
@Legal-developer To achieve that you should create a scale instance, adjust it and apply it to the chart axis. For details, check a snippet below: ``` Linear extraScale = Linear.instantiate();...
@persiklover As I can see, you are using Ordinal xScale with continuous mode. The ordinal scale works with categories, it means that "1.5" has its own category. You should use...
@persiklover The ordinal chart expects that every series has the same set of points (the same x coordinates). If they don't match continuous series can get broken. In this case,...
@kuyajohn We have fixed this problem. Version 0.3.0 is correct one, please use it.
@Aelafseged @ashivakarthik There's no need in compiling the repo. All you need is to add the repository to the project build.gradle and add the dependency to the module build.gradle. For...