-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
LineChart.py
41 lines (36 loc) · 1.03 KB
/
LineChart.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 2017年12月19日
@author: Irony
@site: https://pyqt.site , https://github.com/PyQt5
@email: [email protected]
@file: LineChart
@description:
"""
import sys
try:
from PyQt5.QtChart import QChartView, QLineSeries, QChart
from PyQt5.QtGui import QPainter
from PyQt5.QtWidgets import QApplication
except ImportError:
from PySide2.QtGui import QPainter
from PySide2.QtWidgets import QApplication
from PySide2.QtCharts import QtCharts
QChartView = QtCharts.QChartView
QChart = QtCharts.QChart
QLineSeries = QtCharts.QLineSeries
if __name__ == '__main__':
app = QApplication(sys.argv)
chart = QChart()
chart.setTitle('Line Chart 1')
series = QLineSeries(chart)
series.append(0, 6)
series.append(2, 4)
chart.addSeries(series)
chart.createDefaultAxes() # 创建默认轴
view = QChartView(chart)
view.setRenderHint(QPainter.Antialiasing) # 抗锯齿
view.resize(800, 600)
view.show()
sys.exit(app.exec_())