javascript - ChartJS Radar Chart Skip label Ticks -


i have created radar chart 360 labels; each degree one. don't want show them on scale. how can skip ticks?

i skip labels on x-axis because there many points. have tried following settings. can body please me?

i have tried make labels empty in array, tooltip not work

i tried both make font-size smaller skipping ticks:

{   type: 'radar',   pointdot: false,   scaleoverride: true,   scalesteps: 4,   scalestepwidth: 5,   scalestartvalue: 0,   data: {     labels: [],     datasets: []   },   options: {     elements: {       line: {         tension:0,         borderwidth:3       }     },     scales: {       ticks: {         max: 100,         fontsize: 6,         autoskip: true,         stepsize:50       },       gridlines: {         display: false       },       pointlabels: {         fontsize: 6       }     },     legend: {       display: false,       labels: {         fontsize: 6       }     },     labels: {       fontsize: 6     }   },   pointlabelfontsize: '6px' } 

i have chartjs version 2.5.0

the result follows: output of graph


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -