Home
last modified time | relevance | path

Searched refs:PointShape (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/chart/
H A Dchart_component.h30 enum class PointShape { enum
188 PointShape GetPointShape() const in GetPointShape()
193 void SetPointShape(PointShape shape) in SetPointShape()
289 PointShape pointShape_ = PointShape::CIRCLE;
H A Drosen_render_chart.cpp251 case PointShape::CIRCLE: { in PaintPoint()
257 case PointShape::SQUARE: { in PaintPoint()
267 case PointShape::TRIANGLE: { in PaintPoint()
303 case PointShape::CIRCLE: { in PaintPoint()
313 case PointShape::SQUARE: { in PaintPoint()
325 case PointShape::TRIANGLE: { in PaintPoint()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H A Djsi_chart_bridge.cpp99 PointShape shape = (valStr == "circle") in GetAttrOptionsSeriesPoint()
100 ? PointShape::CIRCLE in GetAttrOptionsSeriesPoint()
101 … : (valStr == "square") ? PointShape::SQUARE : PointShape::TRIANGLE; in GetAttrOptionsSeriesPoint()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/card_frontend/
H A Djs_card_parser.cpp136 PointShape shape = (valStr == "circle") ? PointShape::CIRCLE in GetAttrOptionsSeriesPoint()
137 : (valStr == "square") ? PointShape::SQUARE in GetAttrOptionsSeriesPoint()
138 : PointShape::TRIANGLE; in GetAttrOptionsSeriesPoint()