Describes minimum required functionality from PolarAreaChart control.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IPolarAreaChart :public virtual IRadialChart
{
public:
virtual bool isAutoRange() = 0; // Return whether range should be calculated automatically to represent entire data of the dataset assigned to a widget
virtual float getRange() = 0; // Return range in global coordinate space represented on client area of control
virtual bool setAutoRange(const bool value) = 0; // Set whether range should be calculated automatically to represent entire data of the dataset assigned to a widget
virtual bool setRange(const float value) = 0; // Set range in global coordinate space represented on client area of control
};
Namespace: | nitisa::charts |
Include: | Charts/Controls/IPolarAreaChart.h |