jquery - How to change font size in JQPlot -
i using following code built simple line chart using jqplot.
$(document).ready(function(){ var line1 = [14, 32, 41, 44, 40, 47, 53, 67]; var plot1 = $.jqplot('chart1', [line1], { title: 'chart point labels', seriesdefaults: { showmarker:false, pointlabels: { show:true } } }); });
i want change font size of label. ideas on how it?? in advance
after chart renders can detect code behind using dev tools chrome dev tools or fire bug.
as long chart plugin creates standard markup , not svg or canvas, can resolve way catch labels through css using proper css selector apply font and/or other styling need labels.
Comments
Post a Comment