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 1866 - CircularGauge Ticks & MinorTicks limited to Pointer styles
Summary: CircularGauge Ticks & MinorTicks limited to Pointer styles
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2017-05-18 12:26 EDT by christopher ireland
Modified: 2017-05-24 13:13 EDT (History)
0 users

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


Attachments
screenshot (108.63 KB, image/png)
2017-05-24 13:13 EDT, christopher ireland
Details

Note You need to log in before you can comment on or make changes to this bug.
Description christopher ireland 2017-05-18 12:26:25 EDT
Per the URL in this ticket. 

The ability to draw simple lines as an example of further customization.
Comment 1 christopher ireland 2017-05-24 13:13:19 EDT
New GaugeSeriesPointer.Line property, e.g.

    private void InitializeChart()
    {
      CircularGauge series = new CircularGauge(tChart1.Chart);
      series.FillSampleValues();

      series.MinorTickDistance = 0;
      series.MinorTicks.Visible = true;
      series.MinorTicks.Style = GaugePointerStyles.Line;
      series.MinorTicks.Pen.Color = Color.Fuchsia;
      series.MinorTicks.Pen.Width = 3;
      series.MinorTicks.VertSize = 7;
    }

See screenshot for use at designtime.
Comment 2 christopher ireland 2017-05-24 13:13:46 EDT
Created attachment 766 [details]
screenshot