BarSeries.qml 403 B

123456789101112131415161718
  1. // Copyright (C) 2016 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
  3. import QtQuick 2.0
  4. import QtCharts 2.0
  5. ChartView {
  6. width: 300
  7. height: 300
  8. BarSeries {
  9. name: "BarSeries"
  10. BarSet { label: "Set1"; values: [2, 2, 3] }
  11. BarSet { label: "Set2"; values: [5, 1, 2] }
  12. BarSet { label: "Set3"; values: [3, 5, 8] }
  13. }
  14. }