Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
174 views
in Technique[技术] by (71.8m points)

javascript - Highcharts多线图(Highcharts multi line graphs)

This is my fiddle(这是我的小提琴)

http://jsfiddle.net/a4UQf/(http://jsfiddle.net/a4UQf/) Code:(码:) $(function () { $('#container').highcharts({ title: { text: 'Monthly Average Temperature', x: -20 //center }, subtitle: { text: 'Source: WorldClimate.com', x: -20 }, xAxis: { categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] }, yAxis: { title: { text: 'Temperature (°C)' }, plotLines: [{ value: 0, width: 1, color: '#808080' }] }, tooltip: { valueSuffix: '°C' }, legend: { layout: 'vertical', align: 'right', verticalAlign: 'middle', borderWidth: 0 }, series: [{ name: 'Tokyo', data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6] }, { name: 'New York', data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5] }, { name: 'Berlin', data: [-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0] }, { name: 'London', data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8] }] }); }); Here I want to implement in php mysql.(在这里我想在php mysql中实现。) Some suggestions would be grateful.(一些建议将不胜感激。) Before that the lines showing there, there must be a check then the graph should show, for example if i click on tokyo checkbox then tokyo line graph should show and so on, this should be used in an array, how to do that please help.(在此之前显示的线,必须进行检查,然后图形应该显示,例如,如果我单击“东京”复选框,则应该显示东京线图,依此类推,应在数组中使用,该如何做,请帮忙。)   ask by razor translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can get data from database like here: http://www.highcharts.com/docs/working-with-data/preprocessing-data-from-a-database ,but preparing checkbox click event you can achieve in jquery/javascript and show / hide event(您可以从数据库中获取数据,例如: http : //www.highcharts.com/docs/working-with-data/preprocessing-data-from-a-database ,但是准备复选框单击事件可以在jquery / javascript和显示/隐藏事件)

http://api.highcharts.com/highcharts#Series.show()(http://api.highcharts.com/highcharts#Series.show())

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...