◆ QChartView() [1/2]
◆ QChartView() [2/2]
QChartView |
( |
long |
handle | ) |
|
◆ chart()
在文件 QChartView.x 第 44 行定义.
44 {
45 return (QChart)QtXnl.widget_get_object(nativehandle, Constant.QCHARTVIEW_CHART);
46 }
◆ create() [1/2]
重载 QWidget .
在文件 QChartView.x 第 20 行定义.
20 {
21 nativehandle = QtXnl.createQObject(QType.qtChartView,
this, 0);
22 if (nativehandle == 0){
23 return false;
24 }
25 return true;
26 }
◆ create() [2/2]
bool create |
( |
@NotNilptr QWidget |
parent | ) |
|
|
override |
重载 QWidget .
在文件 QChartView.x 第 28 行定义.
28 {
29 nativehandle = QtXnl.createQObject(QType.qtChartView,
this, parent.nativehandle);
30 if (nativehandle == 0){
31 return false;
32 }
33 return true;
34 }
◆ rubberBand()
RubberBands rubberBand |
( |
| ) |
|
在文件 QChartView.x 第 40 行定义.
40 {
41 return (RubberBands)QtXnl.widget_get_int_value(nativehandle, Constant.QCHARTVIEW_RUBBERBAND);
42 }
◆ setChart()
void setChart |
( |
QChart |
chart | ) |
|
在文件 QChartView.x 第 48 行定义.
48 {
49 QtXnl.widget_set_native_value(nativehandle, Constant.QCHARTVIEW_SETCHART,
chart.nativehandle);
50 }
◆ setRubberBand()
void setRubberBand |
( |
RubberBands |
rubberBands | ) |
|
在文件 QChartView.x 第 36 行定义.
36 {
37 QtXnl.widget_set_vint_value(nativehandle, Constant.QCHARTVIEW_SETRUBBERBAND, rubberBands);
38 }