如何使用发球台添加新系列



这就是我将信号显示在图形上的地方,问题是它们没有打印出来。我一直在阅读teechar库的使用,我发现没有问题。你看到代码的任何部分是否丢失了吗?

grafica.addSerie("serieName", null);
grafica.setSerieVisible(index, true);
grafica.setAutoRange(false, index);
grafica.setColorSerie(COLOR.Red, index);

您需要做的是添加新的系列数据:

grafica.addSerie(ARRAY_AXIS_X_GET_VALUE, ARRAY_AXIS_X_GET_VALUE, YOUR_SERIE_INDEX);

不要忘记迭代数据。

相关内容

  • 没有找到相关文章

最新更新