java gui的plot函数画图为何不显示图形

x = 0.1*(1..100)
y = 0.1*(100..1)
t = table(x,y)
plot(t)
请先 登录 后评论

1 个回答

chris

因为默认  chartType  是 LINE,这时候一定要设置 extras: {multiYAxes: } 

plot(t, extras={multiYAxes: true} ) 
请先 登录 后评论