Bring back title headers allow opening a single chart fullscreen allow selecting individual series in a chart
25 lines
518 B
QML
25 lines
518 B
QML
import QtQuick 2.3
|
|
import QtQuick.Layouts 1.2
|
|
import QtQuick.Controls 2.2
|
|
import Nymea 1.0
|
|
import "qrc:/ui/components"
|
|
|
|
Page {
|
|
id: root
|
|
|
|
property alias energyManager: powerBalanceStats
|
|
property alias producers: powerBalanceStats.producers
|
|
|
|
header: NymeaHeader {
|
|
text: qsTr("Power balance totals")
|
|
backButtonVisible: true
|
|
onBackPressed: pageStack.pop()
|
|
}
|
|
|
|
PowerBalanceStats {
|
|
id: powerBalanceStats
|
|
anchors.fill: parent
|
|
titleVisible: false
|
|
}
|
|
}
|