/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_chart.cpp | 70 [](const std::string& val, DOMChart& chart) { in SetSpecializedAttr() 71 chart.animationDuration_ = StringToDouble(val); in SetSpecializedAttr() 74 [](const std::string& val, DOMChart& chart) { in SetSpecializedAttr() 75 chart.autoScale_ = StringToBool(val); in SetSpecializedAttr() 78 [](const std::string& val, DOMChart& chart) { in SetSpecializedAttr() 79 chart.showEffect_ = StringToBool(val); in SetSpecializedAttr() 82 [](const std::string& val, DOMChart& chart) { in SetSpecializedAttr() 83 chart.percent_ = StringToDouble(val); in SetSpecializedAttr() 84 if (chart.percent_ > chart in SetSpecializedAttr() [all...] |
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/test/unittest/common/chart/ |
H A D | chart_tdd_test.cpp | 33 " },[_c('chart',{\n" 36 " ref: 'chart',\n" 81 " },[_c('chart',{\n" 84 " ref: 'chart',\n" 129 " },[_c('chart',{\n" 136 " ref: 'chart',\n" 183 " },[_c('chart',{\n" 190 " ref: 'chart',\n" 260 UIChart *chart = reinterpret_cast<UIChart *>(GetViewByRef(page, "chart")); in VerifyWidthAndHeight() local 278 UIChart *chart = reinterpret_cast<UIChart *>(GetViewByRef(page, "chart")); ChangeComponentHeight() local [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/chart/ |
H A D | render_chart.cpp | 16 #include "core/components/chart/render_chart.h" 26 LOGI("convert to chart component fail"); in Update() 43 auto chart = weakchart.Upgrade(); in Update() 44 if (chart) { in Update() 45 chart->MarkNeedLayout(); in Update()
|
/foundation/arkui/ace_engine/test/component_test/tools/previewer_host/main/ |
H A D | collect_results_and_visualize.js | 226 <div id="chart" style="width: 80%; height: 80%;"></div> 231 var chart = echarts.init(document.getElementById('chart')); variable 256 chart.setOption(option); 314 console.info(`HTML file with stacked bar chart generated: ${htmlName}`);
|
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/ |
H A D | js_command.cpp | 80 auto chart = AceType::DynamicCast<DOMChart>(node); in UpdateForChart() local 81 if (chart) { in UpdateForChart() 83 chart->SetChartAttrDatasets(*chartDatasets_); in UpdateForChart() 86 chart->SetChartAttrOptions(*chartOptions_); in UpdateForChart() 89 chart->SetChartAttrSegments(*segments_); in UpdateForChart()
|
/foundation/arkui/ui_lite/interfaces/kits/components/ |
H A D | ui_chart.h | 29 * @brief Defines the attributes of the chart component and provides functions for adding and deleting 30 * data sets to display a chart. 101 * @brief Obtains the coordinates in the chart for a data point in the data set. 104 * @param point Indicates the obtained coordinates. If the data set is not added to the chart, 114 * @brief Obtains the coordinates in the chart for a original data point in the data set. 171 * If <b>smooth</b> is set to <b>true</b>, the filling color, top point, and bottom point of a line chart have 197 * @brief Enables the fill color of a line chart. 299 * @brief Obtains the polyline color of the data set in a line chart. 327 * For a line chart, <b>color</b> refers to the fill color between the line and the x-axis. 328 * For a bar chart, < 355 BindToChart(UIChart* chart) BindToChart() argument [all...] |
/foundation/arkui/ui_lite/test/unittest/components/ |
H A D | ui_chart_unit_test.cpp | 502 UIChart* chart = static_cast<UIChart*>(chart_); in HWTEST_F() local 503 chartDataSerial_->BindToChart(chart); in HWTEST_F()
|
/foundation/arkui/ui_lite/test/uitest/test_chart/ |
H A D | ui_test_chart_polyline.cpp | 124 label->SetText("chart添加、删除数据串 "); in UIKitChartPolylineTestAddDataSerial001() 256 UIChart* chart = static_cast<UIChart*>(view); in Callback() local 257 chart->RefreshChart(); in Callback() 278 label->SetText("chart追加点、修改点、平滑化"); in UIKitChartPolylineTestAddPoints004()
|
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/ |
H A D | jsi_chart_bridge.cpp | 529 MainChart chart; in GetAttrDatasets() local 530 GetAttrDataset(runtime, itemVal, chart); in GetAttrDatasets() 531 datasets_.push_back(chart); in GetAttrDatasets()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/base/ |
H A D | keys.h | 54 KEYWORD(BACKGROUND_COLOR, backgroundColor) // chart line color 85 KEYWORD(CHART, chart) // tag name 97 KEYWORD(DATASETS, datasets) // chart data 158 KEYWORD(LABELS, labels) // chart labels 197 KEYWORD(OPTIONS, options) // chart options
|
/foundation/arkui/ace_engine/frameworks/bridge/card_frontend/ |
H A D | js_card_parser.cpp | 412 MainChart chart; in GetAttrDatasets() local 413 GetAttrDataset(item, chart); in GetAttrDatasets() 414 datasets.emplace_back(chart); in GetAttrDatasets()
|