2016-05-06 12 views
0

Spider HighChartに問題が発生しました。折れ線グラフとして表示されている場所とスパイダーチャートとして表示されている別の場所に問題があります。Spider HighChartの問題が折れ線グラフとして表示される場合があります。

高チャートライブラリの非常に単純なコードを使用しています。それは、グラフの種類が線であり、極座標が真であるセクションに関連するものですか?

どういう意味ですか?

$('#container').highcharts({ 
    credits:{enabled:false}, 
    chart: { 
     polar: 'true', 
     type: 'line', 
     width: 850, 
     height: 700 
    }, 

    title: { 
     text: 'Alliance Performance', 
     x: 0 
    }, 

    pane: { 
     size: '80%' 
    }, 

    xAxis: { 
     categories: ['alliance with Company', 'The right people from both sides of the alliance', 'Decisions related to our alliance', 'Rationale for decisions demonstrates strong consideration of our business and our needs', 'Lessons learned are incorporated into work processes or practices', 'Expectations and deadlines', 'Critical information', 'When decisions are made, both parties have a clear understanding and alignment on the rationale'], 
    labels: { 
     style: { 
      fontSize: '11px', 
      fontFamily: 'Verdana, sans-serif', 
      width: 300 

     } 
    },    

    }, 

    yAxis: { 
     gridLineInterpolation: 'polygon', 
     lineWidth: 0, 
     min: 0 
    }, 

    tooltip: { 
     shared: true, 
     pointFormat: '<span style="color:{series.color}">{series.name}: <b>{point.y:,.0f}</b><br/>' 
    }, 

    legend: { 
     align: 'Top', 
     verticalAlign: 'Top', 
     y: 30, 
     enabled: true, 
     layout: 'vertical' 
    }, 

    series: [{ 
     name: 'Employees', 
     data: [3.1, 3.0, 3.1, 5.0, 1.5, 2.0, 3.6, 4.5], 
     pointPlacement: 'on' 
    },{ 
     name: 'Partners', 
     data: [2.1, 4.0, 3.1, 4.0, 3.5, 2.0, 5.0, 4.6], 
     pointPlacement: 'on' 
    }] 

}); 
+1

「時折折れ線グラフとして表示されています」という意味ですか?あなたのグラフはいつか折れ線グラフで表示され、スパイダーチャートで表示されますか? –

答えて

0

折れ線グラフがある場所では、highcharts-more.jsファイルへの参照がありません。両方の場所で必要なファイルをすべて添付してください。

関連する問題