canvasjs 折线图中未显示轴边框

axis border not shown in canvasjs line chart

我无法显示轴的 border/line。 我检查了 canvasjs.com 但在文档中找不到任何相关信息。

有什么想法吗?

JSiddle

此图表的设置在以下代码中给出。

HTML

<div id="chartContainer" style="height: 360px; width: 360px;"></div>

JAVASCRIPT

        var chart = new CanvasJS.Chart("chartContainer",{
        theme: "theme2",


        toolTip: {
        shared: true
      },
        title:{
        text: "",  
      },
        axisX: {
        labelFontSize: 11,  
        labelFontColor: "black", 
        labelFontFamily: "calibri",
        labelFontWeight: "normal",
        interval: 10,
        minimum: 15,
        maximum: 95,
      },
        axisY: {
        labelFontSize: 11, 
        labelFontColor: "black",
        labelFontFamily: "calibri",
        labelFontWeight: "normal",
        gridThickness: 0,
        lineColor: "gray", 
        interval: 20,
        minimum: 170,
        maximum: 400,
      },

        data: [ 
            {   
                type: "line",
                //axisYType: "secondary",
                name: "Downloads",
                lineThickness: 2,
                //showInLegend: true,
                name: "downloads",
                markerType: "none",
                dataPoints: [
                { x: 46, y: 170 },
                { x: 40, y: 353 },
                { x: 47, y: 397 },
                { x: 47, y: 397 },
                { x: 57, y: 396 },
                { x: 92, y: 353 },
                { x: 70, y: 170 },
                ]
            },

            {        
                type: "line",
                markerType: "none",
                //showInLegend: true,
                lineThickness: 2,
                name: "visits",
                dataPoints: [
                { x: 39, y: 170 },
                { x: 35, y: 255 },
                { x: 27, y: 262 },
                { x: 17, y: 355 },
                { x: 25, y: 392 },
                { x: 57, y: 396 },
                { x: 92, y: 353 },
                { x: 70, y: 170 },
                ]
            },
            {        
                type: "line",
                //showInLegend: true,
                 markerType: "cross",
                name: "Unique Visits",
                lineThickness: 2,
                dataPoints: [
                { x: 60, y: 280 },
                ]
            },
            ],

        });

 chart.render();

ethannn,

这似乎是“theme2”中的一个错误。 “theme1”似乎工作正常。

在“theme2”中,您可以通过设置 lineThickness as shown here.

来解决此问题
axisX:{
      lineThickness: 2
   },
axisY:{
      lineThickness: 2
   }