Home
last modified time | relevance | path

Searched refs:ChartType (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_chart.cpp34 if (chartType_ == ChartType::BAR || chartType_ == ChartType::LINE) { in GetSpecializedComponent()
37 if (chartType_ == ChartType::GAUGE) { in GetSpecializedComponent()
96 chart.chartType_ = ChartType::BAR; in SetSpecializedAttr()
98 chart.chartType_ = ChartType::LINE; in SetSpecializedAttr()
106 chart.chartType_ = ChartType::LINE; in SetSpecializedAttr()
124 if (chart.chartType_ == ChartType::LINE || (chart.chartType_ == ChartType::BAR) || in SetSpecializedStyle()
290 ((chartType_ != ChartType::LINE && chartType_ != ChartType::BAR) in SetChart()
320 if (chartType_ == ChartType::GAUGE) { in PrepareSpecializedComponent()
336 } else if (chartType_ == ChartType::BAR || chartType_ == ChartType::LINE) { in PrepareSpecializedComponent()
347 } else if (chartType_ == ChartType::PROGRESS || chartType_ == ChartType::LOADING) { in PrepareSpecializedComponent()
[all …]
H A Ddom_chart.h194 ChartType chartType_ { ChartType::LINE };
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/data_panel/
H A Ddata_panel_component.h137 virtual ChartType GetPanelType() const = 0;
139 void SetPanelType(ChartType type) in SetPanelType()
205 ChartType type_ = ChartType::PROGRESS;
227 explicit ProgressDataPanelComponent(ChartType type) in ProgressDataPanelComponent()
233 ChartType GetPanelType() const override in GetPanelType()
297 explicit PercentageDataPanelComponent(ChartType type) in PercentageDataPanelComponent()
307 ChartType GetPanelType() const override in GetPanelType()
H A Drender_data_panel.h67 ChartType type_ = ChartType::LINE;
193 ChartType GetDataPanelType() const in GetDataPanelType()
219 ChartType panelType_ = ChartType::PROGRESS;
H A Drender_data_panel.cpp78 if (type_ == ChartType::LOADING || (type_ == ChartType::RAINBOW && needReplayAnimation_)) { in PerformLayout()
97 if (type_ != ChartType::LOADING) { in AnimationChanged()
127 if (isLoading_ != (dataPanelComponent->GetPanelType() == ChartType::LOADING)) { in Update()
130 isLoading_ = dataPanelComponent->GetPanelType() == ChartType::LOADING ? true : false; in Update()
H A Ddata_panel_component.cpp92 if (type_ == ChartType::LOADING) { in InitalStyle()
H A Drosen_render_data_panel.cpp705 if (type_ == ChartType::LOADING) { in Paint()
1008 if (type_ == ChartType::LINE) { in Paint()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Ddata_panel_model_impl.cpp28 AceType::MakeRefPtr<PercentageDataPanelComponent>(ChartType::RAINBOW); in Create()
59 component->SetPanelType(ChartType::LINE); in Create()
61 component->SetPanelType(ChartType::RAINBOW); in Create()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/chart/
H A Drender_chart.h38 ChartType type_ = ChartType::LINE;
H A Dchart_component.h36 enum class ChartType { enum
581 explicit ChartComponent(ChartType type) in ChartComponent()
619 ChartType GetChartType() const in GetChartType()
630 ChartType type_ = ChartType::LINE;
H A Drosen_render_chart.cpp90 if (!vertical_.display && !horizontal_.display && type_ == ChartType::LINE) { in Paint()
370 if (type_ == ChartType::LINE) { in PaintDatas()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_data_panel_ffi.cpp29 const std::vector<ChartType> DataPanel_TYPE = { ChartType::LINE, ChartType::RAINBOW};
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Ddata_panel_composed_element.cpp100 if (panelType == ChartType::LINE) { in GetDataPanelType()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_data_panel.cpp128 … int32_t type = jsObj->GetPropertyValue<int32_t>("type", static_cast<int32_t>(ChartType::RAINBOW)); in Create()
129 if (type == static_cast<int32_t>(ChartType::LINE)) { in Create()