Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 78 - Radar Series Labels aren't positioning correctly
Summary: Radar Series Labels aren't positioning correctly
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: TeeChart for .NET 4.1.2013.07300
Hardware: PC Windows
: --- major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-06 11:06 EST by sandra pazos
Modified: 2013-11-14 04:29 EST (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description sandra pazos 2013-11-06 11:06:39 EST
The position of Circular labels of Radar Series are incorrect. To check the problem please see next code: 

  public Form1()
    {
      InitializeComponent();
      tChart1 = new TChart();
      this.Controls.Add(tChart1);
      tChart3.Dock = DockStyle.Fill;
      tChart1.Visible = false;
      panel1.Dock = DockStyle.Top; 
      InitializeChart();
    }
    private void InitializeChart()
    {
      tChart3.Aspect.View3D = false; 
      Steema.TeeChart.Styles.Radar series1 = new Radar(tChart1.Chart);
      series1.Add(10, 10, "Lamps");
      series1.Add(20, 20, "Cars");
      series1.Add(50, 50, "Phones");
      series1.Add(100, 100, "Tables");
      series1.Add(120, 120, "Monitors");
      series1.Brush.Visible = false;
      series1.CircleLabels = true; 
    }