QBarModelMapper Class
QBarModelMapper 클래스는 막대 시리즈용 모델 매퍼입니다. 더 보기...
Header: | #include <QBarModelMapper> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Graphs) target_link_libraries(mytarget PRIVATE Qt6::Graphs) |
qmake: | QT += graphs |
QML에서: | BarModelMapper |
상속합니다: | QObject |
- 상속된 멤버를 포함한 모든 멤버의 목록
- QBarModelMapper는 Qt Graphs 2D용 C++ 클래스의 일부입니다.
속성
|
|
공공 기능
qsizetype | count() const |
qsizetype | first() const |
qsizetype | firstBarSetSection() const |
qsizetype | lastBarSetSection() const |
QAbstractItemModel * | model() const |
Qt::Orientation | orientation() const |
QBarSeries * | series() const |
void | setCount(qsizetype newCount) |
void | setFirst(qsizetype newFirst) |
void | setFirstBarSetSection(qsizetype newFirstBarSetSection) |
void | setLastBarSetSection(qsizetype newLastBarSetSection) |
void | setModel(QAbstractItemModel *model) |
void | setOrientation(Qt::Orientation orientation) |
void | setSeries(QBarSeries *series) |
신호
void | countChanged() |
void | firstBarSetSectionChanged() |
void | firstChanged() |
void | lastBarSetSectionChanged() |
void | modelChanged() |
void | orientationChanged() |
void | seriesChanged() |
상세 설명
모델 매퍼를 사용하면 QAbstractItemModel 클래스에서 파생된 데이터 모델을 그래프의 데이터 소스로 사용할 수 있습니다. 모델 매퍼는 데이터 모델과 QBarSeries 사이의 연결을 만드는 데 사용됩니다.
모델 및 막대 시리즈 속성 모두 데이터를 조작하는 데 사용할 수 있습니다. 모델 매퍼는 막대 시리즈와 데이터 모델을 동기화 상태로 유지합니다.
모델 매퍼는 막대 시리즈의 모든 막대 집합이 동일한 크기를 갖도록 합니다. 따라서 막대 세트에서 값을 추가하거나 제거하면 막대 시리즈의 모든 막대 세트에서 동일한 변경이 이루어집니다.
속성 문서
count : qsizetype
이 속성은 막대 시리즈의 데이터로 매핑되는 모델의 행 또는 열 수를 보유합니다.
기본값은 -1
이며 최소값이기도 합니다. 모델의 행/열 수에 따라 개수가 제한됩니다.
함수에 액세스합니다:
qsizetype | count() const |
void | setCount(qsizetype newCount) |
알림 신호:
void | countChanged() |
QBarModelMapper::orientation 를참조하세요 .
first : qsizetype
이 속성은 막대 시리즈에서 막대 집합의 첫 번째 값을 포함하는 모델의 행 또는 열을 보유합니다.
최소값 및 기본값은 0입니다.
함수에 액세스합니다:
qsizetype | first() const |
void | setFirst(qsizetype newFirst) |
알림 신호:
void | firstChanged() |
QBarModelMapper::orientation 를참조하세요 .
firstBarSetSection : qsizetype
이 속성은 첫 번째 막대 집합의 데이터 소스로 사용되는 모델의 섹션을 보유합니다.
기본값은 -1(잘못된 매핑)입니다.
함수에 액세스합니다:
qsizetype | firstBarSetSection() const |
void | setFirstBarSetSection(qsizetype newFirstBarSetSection) |
알림 신호:
void | firstBarSetSectionChanged() |
QBarModelMapper::orientation 를참조하세요 .
lastBarSetSection : qsizetype
이 속성은 마지막 막대 집합의 데이터 소스로 사용되는 모델 섹션을 보유합니다.
기본값은 -1(잘못된 매핑)입니다.
함수에 액세스합니다:
qsizetype | lastBarSetSection() const |
void | setLastBarSetSection(qsizetype newLastBarSetSection) |
알림 신호:
void | lastBarSetSectionChanged() |
QBarModelMapper::orientation 를참조하세요 .
model : QAbstractItemModel*
이 속성에는 매퍼가 사용하는 데이터 모델이 저장됩니다.
액세스 함수:
QAbstractItemModel * | model() const |
void | setModel(QAbstractItemModel *model) |
알림 신호:
void | modelChanged() |
orientation : Qt::Orientation
모델매퍼에게 모델에서 데이터를 매핑하는 방법을 알려줍니다. Qt::Vertical
을 사용하는 경우 모델의 각 열은 막대 집합을 정의하고 모델의 행은 카테고리를 정의합니다. 방향이 Qt::Horizontal
으로 설정된 경우 모델의 각 행은 막대 집합을 정의하고 모델의 열은 카테고리를 정의합니다.
기본값은 다음과 같습니다. Qt::Vertical
액세스 기능:
Qt::Orientation | orientation() const |
void | setOrientation(Qt::Orientation orientation) |
알림 신호입니다:
void | orientationChanged() |
series : QBarSeries*
이 속성은 매퍼에서 사용하는 막대 계열을 보유합니다.
시리즈가 매퍼로 설정되면 시리즈의 모든 데이터가 삭제됩니다. 새 계열이 지정되면 이전 계열의 연결은 끊어지지만 데이터는 보존됩니다.
기능에 액세스합니다:
QBarSeries * | series() const |
void | setSeries(QBarSeries *series) |
알림 신호:
void | seriesChanged() |
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.