是否可以在 BEMSimpleLineGraph 中调整任意两点的距离并跳过 X 轴上的某些点?

Is it possible to adjust distance of any two points and skip some points on X Axis in BEMSimpleLineGraph?

是否可以在缺少某些数据点的情况下使用 BEMSimpleLineGraph? 例如: X 轴时间 Y 轴温度

10:00 67 11:00 70 12:00 未知 13:00 72 14:0069

连接 70 和 72,使 10:00 和 11:00 之间的 X 轴距离加倍。 放下 12:00 点。

您可以添加 BEMNULLGRAPHVALUE 作为您的未知数。

对于您的示例,假设您的 Y 值是 CGFloats,将产生以下结果:

10:00 67 11:00 70 12:00 BEMNULLGRAPHVALUE 13:00 72 14:00 69

此功能首先在 Issue 104, and added with Pull Request 132 中解决。