CRadarChart



Implements RadarChart control.

You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.

class CRadarChart :public virtual IRadarChart, public CControl
{
public:
    // IControl getters 
    RectF getClientRect() override;

    // IControl setters 
    bool setDPI(const Point &value) override;

    // IControl methods 
    void Refresh(const bool refresh_children) override;

    // IRadialChart getters 
    IChartDataSet *getDataSet() override;

    // IRadialChart setters 
    bool setDataSet(IChartDataSet *value, const bool release_old) override;

    // IRadialChart methods 
    void Update() override;

    // IRadarChart getters 
    bool isAutoRange() override;
    float getRange() override;

    // IRadarChart setters 
    bool setAutoRange(const bool value) override;
    bool setRange(const float value) override;

    CRadarChart();
    CRadarChart(IForm *parent);
    CRadarChart(IControl *parent);
    ~CRadarChart() override;

    Color getBackgroundColor() const; // Return background color 
    Gradient *getBackgroundGradient(); // Return background gradient 
    bool isDrawGrid() const; // Return whether a grid should be drawn 
    bool isAutoGridStep() const; // Return whether grid step should be calculated automatically 
    float getGridStep() const; // Return grid step 
    float getDefaultGridStep() const; // Return default grid step(when scale is 1) 
    Color getGridColor() const; // Return grid color 
    bool isDrawLabels() const; // Return whether labels should be drawn 
    Color getLabelsColor() const; // Return labels color 
    int getLabelSigns() const; // Return count of signs after point in labels(0..9) 
    float getQuality() const; // Return quality(0..1) 
    RectF getPadding() const; // Return padding 
    float getPointSize() const; // Return point size 
    bool isDrawLegend() const; // Return whether legend should be drawn 
    Color getLegendColor() const; // Return legend color 
    const ColorArray &getBackgroundColors() const; // Return background colors 
    const FloatArray &getLineWidthes() const; // Return line widthes 
    const ColorArray &getLineColors() const; // Return line colors 
    const FloatArray &getNormalPointSizes() const; // Return normal point sizes 
    const FloatArray &getActivePointSizes() const; // Return active point sizes 
    const FloatArray &getNormalPointHoles() const; // Return normal point hole sizes 
    const FloatArray &getActivePointHoles() const; // Return active point hole sizes 
    const ColorArray &getNormalPointColors() const; // Return normal point colors 
    const ColorArray &getActivePointColors() const; // Return active point colors 
    const ColorArray &getNormalHoleColors() const; // Return normal point hole colors 
    const ColorArray &getActiveHoleColors() const; // Return active point hole colors 
    const BoolArray &getDrawPoints() const; // Return whether points should be drawn 

    bool setBackgroundColor(const Color &value); // Set background color 
    bool setDrawGrid(const bool value); // Set whether a grid should be drawn 
    bool setAutoGridStep(const bool value); // Set whether grid step should be calculated automatically 
    bool setGridStep(const float value); // Set grid step 
    bool setDefaultGridStep(const float value); // Set default grid step(when scale is 1) 
    bool setGridColor(const Color &value); // Set grid color 
    bool setDrawLabels(const bool value); // Set whether labels should be drawn 
    bool setLabelsColor(const Color &value); // Set labels color 
    bool setLabelSigns(const int value); // Set count of signs after point in labels(0..9) 
    bool setQuality(const float value); // Set quality(0..1) 
    bool setPadding(const RectF &value); // Set padding 
    bool setPointSize(const float value); // Set point size 
    bool setDrawLegend(const bool value); // Set whether legend should be drawn 
    bool setLegendColor(const Color &value); // Set legend color 
    bool setBackgroundColors(const ColorArray &values); // Set background colors 
    bool setLineWidthes(const FloatArray &values); // Set line widthes 
    bool setLineColors(const ColorArray &values); // Set line colors 
    bool setNormalPointSizes(const FloatArray &values); // Set normal point sizes 
    bool setActivePointSizes(const FloatArray &values); // Set active point sizes 
    bool setNormalPointHoles(const FloatArray &values); // Set normal point hole sizes 
    bool setActivePointHoles(const FloatArray &values); // Set active point hole sizes 
    bool setNormalPointColors(const ColorArray &values); // Set normal point colors 
    bool setActivePointColors(const ColorArray &values); // Set active point colors 
    bool setNormalHoleColors(const ColorArray &values); // Set normal point hole colors 
    bool setActiveHoleColors(const ColorArray &values); // Set active point hole colors 
    bool setDrawPoints(const BoolArray &values); // Set whether points should be drawn 
};
Namespace: nitisa::charts
Include: Charts/Controls/RadarChart/RadarChart.h