Rank: Newbie
Groups: jQueryDV, Registered Joined: 12/5/2013(UTC) Posts: 2 Thanks: 1 times Was thanked: 0 time(s) in 0 post(s)
|
Hello, Is it possible to hide the scale numbers in a radar ? Thanks. Ben my code: Code: $('#jqChart2').jqChart({ title: 'The title !', legend: { visible: true, customItems: [ { text: { text: 'Goal', fillStyle: '#418CF0'}, marker: { type: 'triangle', fillStyle: '#418CF0'} }, { text: { text: 'Done', fillStyle: '#FCB441'}, marker: { type: 'circle', fillStyle: '#FCB441' } }, { text: { text: 'Reference', fillStyle: '#E0420D' }, marker: { type: 'rectangle', fillStyle: '#E0420D' } } ] }, border: { strokeStyle: '#6ba851' }, background: background, shadows: { enabled: true }, animation: { duration: 1 }, axes: [ { type: 'categoryAngle', labels: {visible: true}, categories: ['First category', 'Second Category', 'Third category', 'Fourth category', 'Fifth category'] } ], series: [ { title: 'Goal', type: 'radarLine', data: [1.25, 0.40, 0.40, 1.00, 1.20], markers: { size: 10, type: 'triangle', lineWidth: 1 } }, { title: 'Done', type: 'radarLine', data: [1.02, 0.4, 0.3, 0.40, 1.06], markers: { size: 10, type: 'circle', lineWidth: 1 } } , { title: 'Reference', type: 'radarLine', data: [1.5, 0.1, 0.9, 0.50, 1.1], markers: { size: 10, type: 'rectangle', lineWidth: 1 } } ] });
|