BoxPlotSeries.qml 447 B

1234567891011121314151617
  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. BoxPlotSeries {
  9. name: "BoxPlotSeries"
  10. BoxSet { label: "Set1"; values: [3, 4, 5.1, 6.2, 8.5] }
  11. BoxSet { label: "Set2"; values: [5, 6, 7.5, 8.6, 11.8] }
  12. BoxSet { label: "Set3"; values: [3.2, 5, 5.7, 8, 9.2] }
  13. }
  14. }