Skip to content

AnyChart/api.anychart.com

Folders and files

NameName
Last commit message
Last commit date

Latest commit

179a1e5 · Sep 24, 2024
Dec 24, 2018
Sep 24, 2024
May 19, 2021
Sep 24, 2024
Sep 24, 2024
Sep 24, 2024
Sep 24, 2024
Sep 24, 2024
Sep 24, 2024
Sep 24, 2024
Sep 24, 2024
Sep 24, 2024
Sep 24, 2024
Sep 24, 2024
Sep 24, 2024
Sep 2, 2015
May 16, 2019
May 15, 2019
Dec 2, 2021
Sep 24, 2024
Apr 23, 2019
Apr 9, 2024
Sep 20, 2018
Sep 2, 2015
Sep 24, 2024
Sep 24, 2024
Sep 30, 2020
Oct 6, 2015
Dec 4, 2023
Jan 29, 2019
Sep 20, 2018

Repository files navigation

AnyChart API Reference

Overview

The AnyChart Technical Documentation Team welcomes you!

This repo contains AnyChart JavaScript HTML5 Charts API Reference sources. We appreciate your interest and will do our best to make AnyChart documentation as good as possible.

If you have any suggestions how to improve this documentation, feel free to use one of the following methods:

  • Create an issue in repo issues tracker, we will answer you in a 24 hours on weekdays and in 48 hours during weekends.
  • Fork this repo, fix whatever you think needs fixing, and send us a pull request. Learn more about github collaboration model.

Documentation format

We use JSDoc(http://usejsdoc.org/)-like formatting in AnyChart API Reference pages, so the simple method doclet looks like this:

/**
 * Add callback for document ready event.<br/>
 * It is called when the DOM is ready, this can happen prior to images and 
 * other external content is loaded.
 * @param {Function} func Function which will called on document load event.
 * @param {*=} opt_scope Function call context.
 */
anychart.onDocumentReady;

Besides common JSDoc annotations, we use several custom annotations, here is the full list of them:

  • @ignoreDoc - indicates that this doclet should be ignored when is HTML generated.
  • @example - provide an absolute or relative path to a file with method.
  • @listing - code sample with comments.
  • @detailed - extended description of a doclet.