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 - PolarGrid property palette doesn't work in correct way
Summary: PolarGrid property palette doesn't work in correct way
Status: RESOLVED FIXED
Alias: None
Product: ActiveX TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://teechart.net/directline/viewto...
Keywords:
Depends on:
Blocks:
 
Reported: 2018-10-25 08:21 EDT by sandra pazos
Modified: 2020-04-06 13:01 EDT (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 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