PHPLot如何过滤y轴标签
PHPLot how to filter y axis label
我有这个代码:
$plot = new PHPlot();
//Define some data
$example_data = array(
array('Learning',1),
array('Reading',3),
array('Writing',3),
array('Oral Communication',1),
array('Numeracy',2),
);
$plot->SetDataValues($example_data);
现在我得到这张图:
我的问题是如何将 yAxis 文本标签设置为静态值,如 1、2、3 和 4,而不仅仅是现在的 3.2、3、2.8、2.6 .. 2、1.8、1.6 ... 1, 0.8,... 0 .. ??
可能吗?
一种可能是使用 SetYTickIncrement()
方法。
$plot->SetYTickIncrement(1);
别忘了,还有TuneYAutoTicks()
方法
我有这个代码:
$plot = new PHPlot();
//Define some data
$example_data = array(
array('Learning',1),
array('Reading',3),
array('Writing',3),
array('Oral Communication',1),
array('Numeracy',2),
);
$plot->SetDataValues($example_data);
现在我得到这张图:
我的问题是如何将 yAxis 文本标签设置为静态值,如 1、2、3 和 4,而不仅仅是现在的 3.2、3、2.8、2.6 .. 2、1.8、1.6 ... 1, 0.8,... 0 .. ??
可能吗?
一种可能是使用 SetYTickIncrement()
方法。
$plot->SetYTickIncrement(1);
别忘了,还有TuneYAutoTicks()
方法