本文整理汇总了Python中gui.Gui.getMainPlotWidget方法的典型用法代码示例。如果您正苦于以下问题:Python Gui.getMainPlotWidget方法的具体用法?Python Gui.getMainPlotWidget怎么用?Python Gui.getMainPlotWidget使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gui.Gui
的用法示例。
在下文中一共展示了Gui.getMainPlotWidget方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Datastore
# 需要导入模块: from gui import Gui [as 别名]
# 或者: from gui.Gui import getMainPlotWidget [as 别名]
#!/usr/bin/python
from core.datastore import Datastore
from core.seriesprofile import SeriesProfile
from core.axis import Axis
from input.fileread import FileRead
from gui import Gui
import subprocess
if __name__ == "__main__":
datastore = Datastore()
process = subprocess.Popen(["vmstat", "-n", "1"], stdout=subprocess.PIPE)
f = FileRead(datastore, process.stdout, skiplines=1, readheader=True)
f.start()
gui = Gui(datastore, {
"free": SeriesProfile(line=3),
"buff": SeriesProfile(line=3, color="ffff80"),
"cache": SeriesProfile(line=3, color="ff80ff")
})
gui.getMainPlotWidget().setXAxis(Axis(0, 600, wrap=True))
gui.getMainPlotWidget().setYAxis(Axis(0, 3000000))
gui.run()
f.stop()
f.join()
示例2: Datastore
# 需要导入模块: from gui import Gui [as 别名]
# 或者: from gui.Gui import getMainPlotWidget [as 别名]
(options, args) = parser.parse_args()
# Start doing stuff
datastore = Datastore()
infile = sys.stdin
if len(args) > 0:
infile = open(args[0])
f = FileRead(datastore, infile, skiplines=0, readheader=False, separator=options.separator)
f.start()
(min, max) = options.x_axis.split(":")
xAxis = Axis(float(min), float(max))
(min, max) = options.y_axis.split(":")
yAxis = Axis(float(min), float(max))
if options.wrap:
xAxis.wrap = True
series = parseSeries(options.series)
gui = Gui(datastore, series)
gui.getMainPlotWidget().setXAxis(xAxis)
gui.getMainPlotWidget().setYAxis(yAxis)
gui.run()
f.stop()
f.join()