QPieModelMapper Class

QPieModelMapper는 파이 시리즈용 모델 매퍼입니다. 더 보기...

Header: #include <QPieModelMapper>
CMake: find_package(Qt6 REQUIRED COMPONENTS Graphs)
target_link_libraries(mytarget PRIVATE Qt6::Graphs)
qmake: QT += graphs
QML에서: PieModelMapper
상속합니다: QObject

속성

공공 기능

qsizetype count() const
qsizetype first() const
qsizetype labelsSection() const
QAbstractItemModel *model() const
Qt::Orientation orientation() const
QPieSeries *series() const
void setCount(qsizetype count)
void setFirst(qsizetype first)
void setLabelsSection(qsizetype labelsSection)
void setModel(QAbstractItemModel *model)
void setOrientation(Qt::Orientation orientation)
void setSeries(QPieSeries *series)
void setValuesSection(qsizetype valuesSection)
qsizetype valuesSection() const

신호

상세 설명

모델 매퍼를 사용하면 QAbstractItemModel 클래스에서 파생된 데이터 모델을 그래프의 데이터 소스로 사용할 수 있습니다. 모델 매퍼는 데이터 모델과 QPieSeries 사이의 연결을 만드는 데 사용됩니다.

모델 및 파이 계열 속성 모두 데이터를 조작하는 데 사용할 수 있습니다. 모델 매퍼는 파이 시리즈와 데이터 모델을 동기화 상태로 유지합니다.

속성 문서

count : qsizetype

이 속성은 파이 계열의 데이터로 매핑되는 모델의 열 또는 행 수를 보유합니다.

최소값 및 기본값은 -1(모델의 행 수에 의해 제한되는 수)입니다.

함수에 액세스합니다:

qsizetype count() const
void setCount(qsizetype count)

알림 신호:

void countChanged()

QPieModelMapper::orientation참조하세요 .

first : qsizetype

이 속성은 첫 번째 슬라이스 값을 포함하는 모델의 열 또는 행을 보유합니다.

최소값 및 기본값은 0입니다.

함수에 액세스합니다:

qsizetype first() const
void setFirst(qsizetype first)

알림 신호:

void firstChanged()

QPieModelMapper::orientation참조하세요 .

labelsSection : qsizetype

이 속성은 파이 슬라이스의 레이블과 동기화된 상태로 유지되는 모델의 열 또는 행을 보유합니다.

기본값은 -1(잘못된 매핑)입니다.

함수에 액세스합니다:

qsizetype labelsSection() const
void setLabelsSection(qsizetype labelsSection)

알림 신호:

void labelsSectionChanged()

QPieModelMapper::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 : QPieSeries*

이 프로퍼티에는 매퍼가 사용하는 파이 계열이 저장됩니다.

시리즈가 매퍼로 설정되면 시리즈의 모든 데이터가 삭제됩니다. 새 계열이 지정되면 이전 계열의 연결이 끊어지지만 데이터는 보존됩니다.

기능에 액세스합니다:

QPieSeries *series() const
void setSeries(QPieSeries *series)

알림 신호:

void seriesChanged()

valuesSection : qsizetype

이 속성은 파이의 슬라이스 값과 동기화된 상태로 유지되는 모델의 열 또는 행을 보유합니다.

기본값은 -1(잘못된 매핑)입니다.

함수에 액세스합니다:

qsizetype valuesSection() const
void setValuesSection(qsizetype valuesSection)

알림 신호:

void valuesSectionChanged()

QPieModelMapper::orientation참조하세요 .

© 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.