QLineSeries Class
QLineSeries 클래스는 데이터를 꺾은선형 차트로 표시합니다. 더 보기...
Header: | #include <QLineSeries> |
In QML: | LineSeries |
Inherits: | QXYSeries |
Inherited By: |
공용 함수
QLineSeries(QObject *parent = nullptr) | |
virtual | ~QLineSeries() |
재구현된 공용 함수
virtual QAbstractSeries::SeriesType | type() const override |
상세 설명
꺾은선형 차트는 정보를 직선으로 연결된 일련의 데이터 요소로 표시하는 데 사용됩니다.
기본 꺾은선형 차트를 만드는 방법은 간단합니다:
QLineSeries* series = new QLineSeries(); series->append(0, 6); series->append(2, 4); ... chart->addSeries(series);
멤버 함수 문서
[explicit]
QLineSeries::QLineSeries(QObject *parent = nullptr)
parent 의 하위인 빈 시리즈 객체를 생성합니다. 시리즈 객체가 QChartView 또는 QChart 인스턴스에 추가되면 소유권이 이전됩니다.
[virtual noexcept]
QLineSeries::~QLineSeries()
개체를 소멸합니다. QChartView 또는 QChart 인스턴스에 추가된 시리즈는 인스턴스가 소유하며 인스턴스가 파괴되면 삭제됩니다.
[override virtual]
QAbstractSeries::SeriesType QLineSeries::type() const
속성에 대한 액세스 함수를 다시 구현합니다: QAbstractSeries::type.
© 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.