Rank: Newbie
Groups: Registered
Joined: 10/17/2014(UTC) Posts: 6
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
Good afternoon. Just want to say thank you, here is quite friendly community. I need to draw a line graph, but just a line graph with no axes, values, etc. Only the graph and percentage at the end. Q: how to remove all the items from the graph, indicate the axes, axes, etc. you only need to leave a line graph and interest. My code:Code:$('#audience').jqChart({ legend: { visible: false }, border: { visible: false }, title: { text: 'Chart Title', font: '12px sans-serif', lineWidth: 1, // strokeStyle: 'black', fillStyle: 'white' }, animation: { duration: 1 }, series: [ { pointWidth: 0.2, type: 'bar', fillStyle: '#7fbbe5', data: [['A', 33]], labels: { stringFormat: ' %s %%', valueType: 'dataValue', font: '11px sans-serif', fillStyle: 'white' }, tickOptions: { showGridline: false } }, { pointWidth: 0.2, type: 'bar', fillStyle: '#92b5c7', data: [['A', 67]], tickOptions: { showGridline: false }, labels: { stringFormat: ' %s %%', valueType: 'dataValue', font: '11px sans-serif', fillStyle: 'white' } } ] });
|