私は、データを変更したいコンテナ内の円グラフは、ドロップダウンアクションに基づいて表示してい:JavaScript、ハイチャート - グラフのデータをドロップダウンで変更しますか?
<select class="selectHeaderMobile large-1 behaviourForm" id = "list">
<option value="">Select Metric</option>
<option value="A">Difficulty</option>
<option value="B">Interest</option>
</select>
<button class="button smallMobile show-for-all" type="button" id="change">Apply</button>
Javascriptを:
<script>
$(function() {
var options { // Build the chart
chart: {
type: 'pie',
renderTo: 'feedback1',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
type: 'pie'
},
title: {
text: 'Difficulty'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
credits: {
enabled: false
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: false,
showInLegend: true,
format: '<b>{point.name}</b>: {point.percentage:.1f} %',
style: {
color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
},
connectorColor: 'silver'
}
}
},
series: [{
name: 'Difficulty',
data: <%= @get_difficulty_pie.to_json %>
}]
};
var chart = new Highcharts.chart(options);
$("#list").on('change', function(){
//alert('f')
var selVal = $("#list").val();
if(selVal == "A" || selVal == '')
{
options.series = [{name: 'Difficulty', data: <%= @get_difficulty_pie.to_json %> }]
}
else if(selVal == "B")
{
options.series = [{name: 'Interest', data: <%= @get_interest_pie.to_json %>}]
}
chart = Highchart.chart(options);
});
)};
</script>
データが返されているが、何も表示されません文法エラーをどこかに示していますが、わかりませんし、ドロップダウンをテストできません。
ページのソース:
series: [{
name: 'Difficulty',
data: [4,2,1,6,3,3,1,6,4,5,2,6]
},
var chart = new Highcharts.Chart(options);
$("#list").on('change', function(){
//alert('f')
var selVal = $("#list").val();
if(selVal == "A" || selVal == '')
{
options.series = [{name: 'Difficulty', data: [4,2,1,6,3,3,1,6,4,5,2,6] }]
}
else if(selVal == "B")
{
options.series = [{name: 'Interest', data: [4,3,null,3,null,3,4,6,6,3,5,5]}]
}
var chart = new Highcharts.Chart(options);
});
任意の提案ですか?ありがとう。
JSFiddleまたはPlnkrで問題を再作成してください。 – mcranston18
こんにちは@ mcranston18、これはまさに私が達成しようとしているものです:http://jsfiddle.net/WDcL4/それが役に立ちます。私はこの例に従った。 – Co2
https://jsfiddle.net/CO22/L03tdkf9/3/ここに私... – Co2