rename QChart to QtChart

This commit is contained in:
Irony 2019-10-04 10:18:34 +08:00
parent 0a71f456dc
commit 4cf30d95e1
36 changed files with 19 additions and 23 deletions

View file

@ -10,8 +10,8 @@ Created on 2017年12月28日
@description: like http://echarts.baidu.com/demo.html#bar-stack
'''
from random import randint
import sys
from random import randint
from PyQt5.QtChart import QChartView, QChart, QBarSeries, QBarSet, QBarCategoryAxis
from PyQt5.QtCore import Qt, QPointF, QRectF, QPoint
@ -19,7 +19,6 @@ from PyQt5.QtGui import QPainter, QPen
from PyQt5.QtWidgets import QApplication, QGraphicsLineItem, QWidget, \
QHBoxLayout, QLabel, QVBoxLayout, QGraphicsProxyWidget
__Author__ = "By: Irony.\"[讽刺]\nQQ: 892768447\nEmail: 892768447@qq.com"
__Copyright__ = "Copyright (c) 2017 Irony.\"[讽刺]"
__Version__ = "Version 1.0"

View file

@ -10,12 +10,11 @@ Created on 2019年5月5日
"""
import sys
from PyQt5.QtChart import QChartView, QChart, QSplineSeries, QValueAxis
from PyQt5.QtCore import Qt, QTimer, QRandomGenerator
from PyQt5.QtChart import QChartView, QLineSeries, QChart, QSplineSeries, QValueAxis
from PyQt5.QtGui import QPainter, QPen
from PyQt5.QtWidgets import QApplication
__version__ = "0.0.1"

View file

@ -15,7 +15,6 @@ from PyQt5.QtChart import QChartView, QLineSeries, QChart
from PyQt5.QtGui import QPainter
from PyQt5.QtWidgets import QApplication
__version__ = "0.0.1"

View file

@ -19,7 +19,6 @@ from PyQt5.QtGui import QPainter, QPen
from PyQt5.QtWidgets import QApplication, QGraphicsLineItem, QWidget, \
QHBoxLayout, QLabel, QVBoxLayout, QGraphicsProxyWidget
__Author__ = "By: Irony.\"[讽刺]\nQQ: 892768447\nEmail: 892768447@qq.com"
__Copyright__ = "Copyright (c) 2017 Irony.\"[讽刺]"
__Version__ = "Version 1.0"

View file

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View file

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 325 KiB

View file

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

View file

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View file

Before

Width:  |  Height:  |  Size: 295 KiB

After

Width:  |  Height:  |  Size: 295 KiB

View file

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

Before

Width:  |  Height:  |  Size: 327 KiB

After

Width:  |  Height:  |  Size: 327 KiB

View file

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

View file

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View file

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View file

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View file

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 101 KiB

View file

Before

Width:  |  Height:  |  Size: 204 KiB

After

Width:  |  Height:  |  Size: 204 KiB

View file

@ -151,22 +151,22 @@ https://pyqt5.com 社区是专门针对PyQt5学习和提升开设的博客网站
- [Flat样式](QtQuick/FlatStyle.py)
- [QML与Python交互](QtQuick/Signals.py)
- [QChart](QChart)
- [折线图](QChart/LineChart.py)
- [折线堆叠图](QChart/LineStack.py)
- [柱状堆叠图](QChart/BarStack.py)
- [LineChart自定义xy轴](QChart/CustomXYaxis.py)
- [ToolTip提示](QChart/ToolTip.py)
- [DynamicSpline动态曲线图](QChart/DynamicSpline.py)
- [区域图表](QChart/AreaChart.py)
- [柱状图表](QChart/BarChart.py)
- [饼状图表](QChart/PieChart.py)
- [样条图表](QChart/SplineChart.py)
- [百分比柱状图表](QChart/PercentBarChart.py)
- [横向柱状图表](QChart/HorizontalBarChart.py)
- [横向百分比柱状图表](QChart/HorizontalPercentBarChart.py)
- [散点图表](QChart/ScatterChart.py)
- [图表主题动画](QChart/ChartThemes.py)
- [QtChart](QtChart)
- [折线图](QtChart/LineChart.py)
- [折线堆叠图](QtChart/LineStack.py)
- [柱状堆叠图](QtChart/BarStack.py)
- [LineChart自定义xy轴](QtChart/CustomXYaxis.py)
- [ToolTip提示](QtChart/ToolTip.py)
- [DynamicSpline动态曲线图](QtChart/DynamicSpline.py)
- [区域图表](QtChart/AreaChart.py)
- [柱状图表](QtChart/BarChart.py)
- [饼状图表](QtChart/PieChart.py)
- [样条图表](QtChart/SplineChart.py)
- [百分比柱状图表](QtChart/PercentBarChart.py)
- [横向柱状图表](QtChart/HorizontalBarChart.py)
- [横向百分比柱状图表](QtChart/HorizontalPercentBarChart.py)
- [散点图表](QtChart/ScatterChart.py)
- [图表主题动画](QtChart/ChartThemes.py)
- [PyQtGraph](PyQtGraph)
- [鼠标获取X轴坐标](PyQtGraph/mouseFlow.py)