Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 pChart 的折线图作为 partograph。
现在,我的问题是,我无法定义 x 和 y 轴的值。y 轴将根据图表上设置的数据自动调整。这不是我想要的。
请看插图:
默认情况下,当图表中不绘制任何数据时。
加载数据时。
请注意,Y 轴的值发生了变化。我想要的是使轴的比例从 0 到 10(1、2、3、4、5、6、7、8、9、10)。
您将需要手动设置比例。例如:
$AxisBoundaries = array(0=>array("Min"=>0,"Max"=>100)); $ScaleSettings = array ("Mode"=>SCALE_MODE_MANUAL,"ManualScale"=>$AxisBoundaries,"DrawSubTicks"=>TRUE,"DrawArrows"=>TRUE,"ArrowSize"=>6); $myPicture->drawScale($ScaleSettings);
希望这可以帮助