Skip to content

Commit

Permalink
rename QChart to QtChart
Browse files Browse the repository at this point in the history
  • Loading branch information
892768447 committed Oct 4, 2019
1 parent 0a71f45 commit 4cf30d9
Show file tree
Hide file tree
Showing 36 changed files with 19 additions and 23 deletions.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions QChart/BarStack.py → QtChart/BarStack.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,15 @@
@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
from PyQt5.QtGui import QPainter, QPen
from PyQt5.QtWidgets import QApplication, QGraphicsLineItem, QWidget, \
QHBoxLayout, QLabel, QVBoxLayout, QGraphicsProxyWidget


__Author__ = "By: Irony.\"[讽刺]\nQQ: 892768447\nEmail: [email protected]"
__Copyright__ = "Copyright (c) 2017 Irony.\"[讽刺]"
__Version__ = "Version 1.0"
Expand Down
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions QChart/DynamicSpline.py → QtChart/DynamicSpline.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@
"""
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"


Expand Down
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion QChart/LineChart.py → QtChart/LineChart.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from PyQt5.QtGui import QPainter
from PyQt5.QtWidgets import QApplication


__version__ = "0.0.1"


Expand Down
3 changes: 1 addition & 2 deletions QChart/LineStack.py → QtChart/LineStack.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@

import sys

from PyQt5.QtChart import QChartView, QChart, QLineSeries, QLegend,\
from PyQt5.QtChart import QChartView, QChart, QLineSeries, QLegend, \
QCategoryAxis
from PyQt5.QtCore import Qt, QPointF, QRectF, QPoint
from PyQt5.QtGui import QPainter, QPen
from PyQt5.QtWidgets import QApplication, QGraphicsLineItem, QWidget, \
QHBoxLayout, QLabel, QVBoxLayout, QGraphicsProxyWidget


__Author__ = "By: Irony.\"[讽刺]\nQQ: 892768447\nEmail: [email protected]"
__Copyright__ = "Copyright (c) 2017 Irony.\"[讽刺]"
__Version__ = "Version 1.0"
Expand Down
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
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4cf30d9

Please sign in to comment.