score:43

Accepted answer

for legend font size, your code is working perfect. here is working demo.

and for x-axis and y-axis,put the font size in (x-axis/y-axis)->labels->style object: here is the sample :

 xaxis: {
            categories: ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'],
            labels: {
                style: {
                    color: 'red',
                    fontsize:'15px'
                }
            }
        },

demo :http://jsfiddle.net/4vzng/

score:0

i was having an issue setting fontsize of my x-axis labels. setting it using font in the labels worked for me:

xaxis: {
        categories: ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'],
        labels: {
            style: {
                color: 'red',
                font: '13px arial, sans-serif'
            }
        }
    },

score:0

xaxis: {
        categories: ['climate change', 'marketing', 'development', 'customer support',
                'information technology', 'administration'],
        tickmarkplacement: 'on',
        linewidth: 0,
        labels: {

            style: {
                fontsize: '14px',
                fontfamily: 'verdana, sans-serif',

            }}
    },

Related Query

More Query from same tag