![]() | Steema Issues DatabaseNote: 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. |
| Summary: | PolarGrid property palette doesn't work in correct way | ||
|---|---|---|---|
| Product: | ActiveX TeeChart | Reporter: | sandra pazos <sandra> |
| Component: | Series | Assignee: | 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
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 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 |