Skip to content

Commit 4cf30d9

Browse files
committed
rename QChart to QtChart
1 parent 0a71f45 commit 4cf30d9

36 files changed

+19
-23
lines changed
File renamed without changes.
File renamed without changes.

QChart/BarStack.py QtChart/BarStack.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,15 @@
1010
@description: like http://echarts.baidu.com/demo.html#bar-stack
1111
'''
1212

13-
from random import randint
1413
import sys
14+
from random import randint
1515

1616
from PyQt5.QtChart import QChartView, QChart, QBarSeries, QBarSet, QBarCategoryAxis
1717
from PyQt5.QtCore import Qt, QPointF, QRectF, QPoint
1818
from PyQt5.QtGui import QPainter, QPen
1919
from PyQt5.QtWidgets import QApplication, QGraphicsLineItem, QWidget, \
2020
QHBoxLayout, QLabel, QVBoxLayout, QGraphicsProxyWidget
2121

22-
2322
__Author__ = "By: Irony.\"[讽刺]\nQQ: 892768447\nEmail: 892768447@qq.com"
2423
__Copyright__ = "Copyright (c) 2017 Irony.\"[讽刺]"
2524
__Version__ = "Version 1.0"
File renamed without changes.
File renamed without changes.

QChart/DynamicSpline.py QtChart/DynamicSpline.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@
1010
"""
1111
import sys
1212

13+
from PyQt5.QtChart import QChartView, QChart, QSplineSeries, QValueAxis
1314
from PyQt5.QtCore import Qt, QTimer, QRandomGenerator
14-
from PyQt5.QtChart import QChartView, QLineSeries, QChart, QSplineSeries, QValueAxis
1515
from PyQt5.QtGui import QPainter, QPen
1616
from PyQt5.QtWidgets import QApplication
1717

18-
1918
__version__ = "0.0.1"
2019

2120

File renamed without changes.
File renamed without changes.

QChart/LineChart.py QtChart/LineChart.py

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
from PyQt5.QtGui import QPainter
1616
from PyQt5.QtWidgets import QApplication
1717

18-
1918
__version__ = "0.0.1"
2019

2120

QChart/LineStack.py QtChart/LineStack.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,13 @@
1212

1313
import sys
1414

15-
from PyQt5.QtChart import QChartView, QChart, QLineSeries, QLegend,\
15+
from PyQt5.QtChart import QChartView, QChart, QLineSeries, QLegend, \
1616
QCategoryAxis
1717
from PyQt5.QtCore import Qt, QPointF, QRectF, QPoint
1818
from PyQt5.QtGui import QPainter, QPen
1919
from PyQt5.QtWidgets import QApplication, QGraphicsLineItem, QWidget, \
2020
QHBoxLayout, QLabel, QVBoxLayout, QGraphicsProxyWidget
2121

22-
2322
__Author__ = "By: Irony.\"[讽刺]\nQQ: 892768447\nEmail: 892768447@qq.com"
2423
__Copyright__ = "Copyright (c) 2017 Irony.\"[讽刺]"
2524
__Version__ = "Version 1.0"
File renamed without changes.
File renamed without changes.
File renamed without changes.

QChart/README.md QtChart/README.md

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -151,22 +151,22 @@ https://pyqt5.com 社区是专门针对PyQt5学习和提升开设的博客网站
151151
- [Flat样式](QtQuick/FlatStyle.py)
152152
- [QML与Python交互](QtQuick/Signals.py)
153153

154-
- [QChart](QChart)
155-
- [折线图](QChart/LineChart.py)
156-
- [折线堆叠图](QChart/LineStack.py)
157-
- [柱状堆叠图](QChart/BarStack.py)
158-
- [LineChart自定义xy轴](QChart/CustomXYaxis.py)
159-
- [ToolTip提示](QChart/ToolTip.py)
160-
- [DynamicSpline动态曲线图](QChart/DynamicSpline.py)
161-
- [区域图表](QChart/AreaChart.py)
162-
- [柱状图表](QChart/BarChart.py)
163-
- [饼状图表](QChart/PieChart.py)
164-
- [样条图表](QChart/SplineChart.py)
165-
- [百分比柱状图表](QChart/PercentBarChart.py)
166-
- [横向柱状图表](QChart/HorizontalBarChart.py)
167-
- [横向百分比柱状图表](QChart/HorizontalPercentBarChart.py)
168-
- [散点图表](QChart/ScatterChart.py)
169-
- [图表主题动画](QChart/ChartThemes.py)
154+
- [QtChart](QtChart)
155+
- [折线图](QtChart/LineChart.py)
156+
- [折线堆叠图](QtChart/LineStack.py)
157+
- [柱状堆叠图](QtChart/BarStack.py)
158+
- [LineChart自定义xy轴](QtChart/CustomXYaxis.py)
159+
- [ToolTip提示](QtChart/ToolTip.py)
160+
- [DynamicSpline动态曲线图](QtChart/DynamicSpline.py)
161+
- [区域图表](QtChart/AreaChart.py)
162+
- [柱状图表](QtChart/BarChart.py)
163+
- [饼状图表](QtChart/PieChart.py)
164+
- [样条图表](QtChart/SplineChart.py)
165+
- [百分比柱状图表](QtChart/PercentBarChart.py)
166+
- [横向柱状图表](QtChart/HorizontalBarChart.py)
167+
- [横向百分比柱状图表](QtChart/HorizontalPercentBarChart.py)
168+
- [散点图表](QtChart/ScatterChart.py)
169+
- [图表主题动画](QtChart/ChartThemes.py)
170170

171171
- [PyQtGraph](PyQtGraph)
172172
- [鼠标获取X轴坐标](PyQtGraph/mouseFlow.py)

0 commit comments

Comments
 (0)