Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How is the api doc generated @ http://api.highcharts.com/

I cannot find anything relate to it from github https://github.com/highslide-software/highcharts.com

Guessing

  1. Google Closure Library javadoc parser https://developers.google.com/closure/compiler/docs/js-for-compiler#tags
  2. Custom Code?

I wanted to generate Java POJO interfaces to be used with GWT AutoBean and JSON processing. Currently I am stuck handcoding the interfaces to be same as the properties mentioned in the api site. This is not maintainable solution as i would need to update it for every release of highcharts and highstocks.

like image 315
appbootup Avatar asked May 30 '13 10:05

appbootup


People also ask

Is Highcharts an API?

If you are a developer who would like to create hosted charts programmatically, then the Highcharts Cloud API might be for you.

What language is used in Highcharts?

Highcharts is a software library for charting written in pure JavaScript, first released in 2009. The license is proprietary.

What is plotOptions in Highcharts?

The plotOptions is a wrapper object for config objects for each series type. The config objects for each series can also be overridden for each series item as given in the series array. Configuration options for the series are given in three levels. Options for all series in a chart are given in the plotOptions.

What is legend in Highcharts?

The legend is a box containing a symbol and name for each series item or point item in the chart. Each series (or points in case of pie charts) is represented by a symbol and its name in the legend. It is possible to override the symbol creator function and create custom legend symbols.


1 Answers

On the Highcharts API page you'll find two download links in the menu on the left. One for download all options as JSON and one for XML format. This can be used for generating your interfaces.

like image 125
gert vaartjes Avatar answered Sep 28 '22 06:09

gert vaartjes