0

I am using dataviz lib. for creating chart using Keen-io. The chartType I am using is line and spline when I used

.chartOptions({ curveType: "function", lineWidth: 10 })

I am not able to see the line width change.

Please Help!!

Surajano
  • 2,688
  • 13
  • 25

1 Answers1

1

It'd be great to see a jsfiddle or something showing your issue. I just created a fiddle using chartOptions and lineWidth, and it seems to be working swimmingly for me.

Fiddle: http://jsfiddle.net/aqbtrxa8/11/

Code:

client.draw(query, el, {
    chartType: "linechart",
    height: 400,
    chartOptions: {
        lineWidth: 10
    }
});
dckuehn
  • 2,427
  • 3
  • 27
  • 37
jwegner
  • 7,043
  • 8
  • 34
  • 56