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 2118

Summary: PolarGrid property palette doesn't work in correct way
Product: ActiveX TeeChart Reporter: sandra pazos <sandra>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: enhancement CC: pep
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://teechart.net/directline/viewtopic.php?f=4&t=1290
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description sandra pazos 2018-10-25 08:21:55 EDT
PolarGrid property palette doesn't work in correct way. When is tried use that the program is broken. The code below reproduce the problem: 
Private Sub Command1_Click()

Private Sub Form_Load()

TChart1.Series(0).FillSampleValues 100
End Sub
Comment 1 sandra pazos 2018-10-25 08:22:54 EDT
The previous code is incorrect. 

The correct code below. 
Private Sub Command1_Click()
TChart1.Series(0).asPolarGrid.Palette.UsePalette = True
End Sub

Private Sub Form_Load()
TChart1.Series(0).FillSampleValues 100
End Sub
Comment 2 pep jorge 2020-04-06 13:01:32 EDT
The following code works fine with the latest version :

Private Sub Command1_Click()
TChart1.Series(0).asPolarGrid.Palette.UseColorRange = False
TChart1.Series(0).asPolarGrid.Palette.UsePalette = True
End Sub