极坐标图显示为折线图?

时间:2015-03-19 00:59:33

标签: c# json highcharts

我正在尝试创建极地蜘蛛图表,但它将其显示为折线图。 我是通过进行ajax调用来实现的。我已经设置了这些属性。

              chart=new {

                    polar = true,
                    type = "line"
                },
                title = new
                {
                    text = project
                },
                xAxis = new
                {
                    categories = pivotvalues,
                    tickmarkPlacement = "on",
                    lineWidth = 0
                },
                yAxis = new
                {
                    gridLineInterpolation = "polygon",
                    lineWidth = 0,
                    min =0
                },

我正在从我的数据库填充系列数据。它显示为线图而不是极地蜘蛛。有什么建议? 我也按照以下顺序加载脚本。

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

我可能做错了什么建议?

0 个答案:

没有答案