javascript - JQuery flot remove bar border -


here's jsfiddle

how can remove border or same bar (not darker) ?

edit: actually, need remove border completely. possible?

    var chartoptions = {             xaxis: { ticks: chartticks },             grid: { clickable: true, hoverable: true },     series: { stack: true, bars: { fill: '#000', show: true, align:'center', barwidth: 0.5 } }         }; 

you can use linewidth option remove outline / border of bars , / or fillcolor option change filling (this can used gradients):

    series: {         stack: true,         bars: {             show: true,             align: 'center',             barwidth: 0.5,             linewidth: 0,             fillcolor: {                 colors: [{                     opacity: 1.0                 }, {                     opacity: 1.0                 }]             }         }     } 

see fiddle example.


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -