0

http://www.humblesoftware.com/flotr2

Flotr2 レーダー チャートのデフォルトのフォント サイズ、太さ、および色を変更しようとしています。flotr2.js ファイルでこれを変更できますが、ソース ファイルはそのままにしておきます。

現在、 Flotr.draw 呼び出しでより大きな fontSize を設定すると、ラベルがさらに間隔を空けます。

function drawGraph(container, series, ticks)
{
    Flotr.draw(container, series, {
        colors: colors,
        HtmlText: true,
        fontSize: 30,
        radar: {
            show: true
        },
        grid: {
            circular: true,
            minorHorizontalLines: true
        },
        yaxis: {
            min: 0,
            max: 7,
            minorTickFreq: 1,
            showLabels: false
        },
        xaxis: {
            ticks: ticks,
            titleAlign: 'right'
        },
        legend: {
            position: 'ss',
            container: document.getElementById("legendItems")
        }
    });
}

他に何を試せばいいのかわからない...

4

1 に答える 1