TdxCustomRangeControl.ClientPropertiesClassName Property
Specifies the data range selection and visualization model type by its class name.
Declaration
property ClientPropertiesClassName: string read; write;
Property Value
Type |
---|
string |
Remarks
You can use this property to assign or change the current data range selection and visualization model by assigning the name of another TdxRangeControlCustomClientProperties class descendant:
uses
dxRangeControl;
//...
dxRangeControl1.ClientPropertiesClassName := 'TdxRangeControlNumericClientProperties'; // Display a numeric scale on the range control's ruler
For the full list of data range selection and visualization models supported by the range control, refer to the ClientProperties property description.
See Also