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 581

Summary: ColorMode of PolarGridSeries doesn't work
Product: .NET TeeChart Reporter: Shinobu Nagai <nagai>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: enhancement CC: sandra
Priority: ---    
Version: TeeChart.NET 2014 4.1.2014.02060   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: ColorMode of PolarGrid series

Description Shinobu Nagai 2014-02-19 01:02:46 EST
Created attachment 91 [details]
ColorMode of PolarGrid series

Using v4.1.2014.2062, even if I set the "Color mode" of PolarGrid series to "Series" or "Palette", nothing changes.
Comment 1 sandra pazos 2014-02-19 04:13:32 EST
To reproduce the problem you can see All features\Welcome!\Chart styles\Extended\Polar Grid  demo example or use the below code:  
 
       private void Form1_Load(object sender, EventArgs e)
        {
            Steema.TeeChart.Styles.PolarGrid polarseries = new Steema.TeeChart.Styles.PolarGrid(tChart1.Chart);
            polarseries.FillSampleValues(); 
        }

        private void button1_Click(object sender, EventArgs e)
        {
            tChart1.ShowEditor();
        }