How to create a new Highstock chart with new Highchart and not jquery?

蓝咒 提交于 2019-12-22 04:01:25

问题


All the examples on the Highchart website creates a stockchart using:

$('#container').highchart('Stockchart', config);

How do I create a stock chart by simply using new? eg:

var chart = new Highchart('Stockchart', config)

I tried that, and this...

var chart = new HighStock(config)

...with no luck.


回答1:


I googled more and eventually found it.
To do it you code like this:

chart = new Highcharts.StockChart(config)

Annoying that they say that... anyway yeah, it has two constructors, Highcharts.Chart and Highcharts.StockChart.



来源:https://stackoverflow.com/questions/16071593/how-to-create-a-new-highstock-chart-with-new-highchart-and-not-jquery

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!