我有这个代码:
$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 .. ??
可能吗 ?