mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-01-22 20:04:32 +08:00
Compare commits
2 Commits
4cca680029
...
655eff4f62
Author | SHA1 | Date | |
---|---|---|---|
|
655eff4f62 | ||
|
b916221d9f |
@ -1402,7 +1402,7 @@ My only desire is to be permitted to drive out the traitors and restore the Han.
|
||||
<context>
|
||||
<name>T_LineChart</name>
|
||||
<message>
|
||||
<location filename="qml/chart/T_LineChart.qml" line="10"/>
|
||||
<location filename="qml/chart/T_LineChart.qml" line="11"/>
|
||||
<source>Line Chart</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1500,7 +1500,7 @@ My only desire is to be permitted to drive out the traitors and restore the Han.
|
||||
<context>
|
||||
<name>T_LineChart</name>
|
||||
<message>
|
||||
<location filename="qml/chart/T_LineChart.qml" line="10"/>
|
||||
<location filename="qml/chart/T_LineChart.qml" line="11"/>
|
||||
<source>Line Chart</source>
|
||||
<translation type="unfinished">线型图</translation>
|
||||
</message>
|
||||
|
@ -7,7 +7,9 @@ import "../component"
|
||||
|
||||
FluScrollablePage{
|
||||
|
||||
id: root
|
||||
title: qsTr("Line Chart")
|
||||
property var data : []
|
||||
|
||||
FluFrame{
|
||||
Layout.preferredWidth: 500
|
||||
@ -15,13 +17,14 @@ FluScrollablePage{
|
||||
padding: 10
|
||||
Layout.topMargin: 20
|
||||
FluChart{
|
||||
id: chart
|
||||
anchors.fill: parent
|
||||
chartType: 'line'
|
||||
chartData: { return {
|
||||
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
|
||||
datasets: [{
|
||||
label: 'My First Dataset',
|
||||
data: [65, 59, 80, 81, 56, 55, 40],
|
||||
data: root.data,
|
||||
fill: false,
|
||||
borderColor: 'rgb(75, 192, 192)',
|
||||
tension: 0.1
|
||||
@ -41,5 +44,20 @@ FluScrollablePage{
|
||||
}
|
||||
}
|
||||
}
|
||||
Timer{
|
||||
id: timer
|
||||
interval: 300
|
||||
repeat: true
|
||||
onTriggered: {
|
||||
root.data.push(Math.random()*100)
|
||||
if(root.data.length>7){
|
||||
root.data.shift()
|
||||
}
|
||||
chart.animateToNewData()
|
||||
}
|
||||
}
|
||||
Component.onCompleted: {
|
||||
timer.restart()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -164,7 +164,7 @@ FluScrollablePage{
|
||||
verticalCenter: parent.verticalCenter
|
||||
left: parent.left
|
||||
}
|
||||
currentIndex: 1
|
||||
currentIndex: -1
|
||||
FluCheckBox{
|
||||
disabled: radio_button_switch4.checked
|
||||
text: qsTr("Radio Button_1")
|
||||
|
@ -8,7 +8,6 @@
|
||||
|
||||
class FluTableModel : public QAbstractTableModel {
|
||||
Q_OBJECT
|
||||
Q_PROPERTY_AUTO(int, dataSourceSize)
|
||||
Q_PROPERTY_AUTO(QList<QVariantMap>, columnSource)
|
||||
Q_PROPERTY_AUTO(QList<QVariantMap>, rows)
|
||||
Q_PROPERTY(int rowCount READ rowCount CONSTANT)
|
||||
|
@ -18,7 +18,9 @@ Item{
|
||||
for(var i = 0;i<buttons.length;i++){
|
||||
buttons[i].checked = false
|
||||
}
|
||||
buttons[currentIndex].checked = true
|
||||
if(currentIndex>=0 && currentIndex<buttons.length){
|
||||
buttons[currentIndex].checked = true
|
||||
}
|
||||
}
|
||||
}
|
||||
implicitWidth: childrenRect.width
|
||||
@ -42,9 +44,6 @@ Item{
|
||||
}
|
||||
}
|
||||
}
|
||||
if(control.currentIndex < 0){
|
||||
control.currentIndex = 0
|
||||
}
|
||||
d.updateChecked()
|
||||
}
|
||||
}
|
||||
@ -52,7 +51,7 @@ Item{
|
||||
Component{
|
||||
id:com_horizontal
|
||||
RowLayout {
|
||||
data: buttons
|
||||
data: control.buttons
|
||||
spacing: control.spacing
|
||||
Component.onCompleted: {
|
||||
for(var i = 0;i<control.buttons.length;i++){
|
||||
@ -65,9 +64,6 @@ Item{
|
||||
}
|
||||
}
|
||||
}
|
||||
if(control.currentIndex < 0){
|
||||
control.currentIndex = 0
|
||||
}
|
||||
d.updateChecked()
|
||||
}
|
||||
}
|
||||
|
@ -19,7 +19,9 @@ Item{
|
||||
for(var i = 0;i<buttons.length;i++){
|
||||
buttons[i].checked = false
|
||||
}
|
||||
buttons[currentIndex].checked = true
|
||||
if(currentIndex>=0 && currentIndex<buttons.length){
|
||||
buttons[currentIndex].checked = true
|
||||
}
|
||||
}
|
||||
}
|
||||
implicitWidth: childrenRect.width
|
||||
@ -43,9 +45,6 @@ Item{
|
||||
}
|
||||
}
|
||||
}
|
||||
if(control.currentIndex < 0){
|
||||
control.currentIndex = 0
|
||||
}
|
||||
d.updateChecked()
|
||||
}
|
||||
}
|
||||
@ -53,7 +52,7 @@ Item{
|
||||
Component{
|
||||
id:com_horizontal
|
||||
RowLayout {
|
||||
data: buttons
|
||||
data: control.buttons
|
||||
spacing: control.spacing
|
||||
Component.onCompleted: {
|
||||
for(var i = 0;i<control.buttons.length;i++){
|
||||
@ -66,9 +65,6 @@ Item{
|
||||
}
|
||||
}
|
||||
}
|
||||
if(control.currentIndex < 0){
|
||||
control.currentIndex = 0
|
||||
}
|
||||
d.updateChecked()
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user