0

无论如何设置Y轴的最小刻度?我试过这个:

plot1 = $.jqplot('graphCanvas', [<?php echo $line1; ?>], {
                animate: true,
                series:[{renderer:$.jqplot.BarRenderer}],
                axesDefaults: {
                    tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
                    tickOptions: {
                        angle: -30,
                        fontSize: '10pt'
                    },
                    showMinorTicks:true
                },
                axes: {
                    xaxis: {
                        renderer: $.jqplot.CategoryAxisRenderer,
                    }, 
                    yaxis:{

                    }
                }
            });

即使我的 showMinor 刻度设置为 true,Y 轴总是显示最大值的 3 倍,例如:如果 12 是我的最大值,最大厚度是 36,我如何将其限制为 14 或 12?

4

1 回答 1

0

在 y 轴选项中,我们可以设置

yaxis : {
        min : 0,
        tickInterval : 1                
        }

或者

yaxis : {
        min : 0,
        tickInterval : 1,
            max:14              
        }

例子

于 2013-05-06T03:26:51.150 回答