Search found 63 matches: annotation text color

Searched query: annotation text color

by sihmon
Wed Oct 26, 2022 2:49 am
Forum: .NET
Topic: stacked bar issue with .net6
Replies: 2
Views: 2991

stacked bar issue with .net6

... checkbox in the legend. And if I remove the annotation and bar1 and bar2 have the 0th value, ... Steema.TeeChart.Styles.Bar(); this.bar1.Brush.Color = Color.Red; this.bar1.Title = "bar1"; this.bar1.XValues.DataMember ... tChart1.Header.Text += $" version {fvi.FileVersion}"; }
by TLC
Tue Mar 23, 2021 6:17 pm
Forum: .NET
Topic: Annotations do not render. Steema.TeeChart.NET.Xamarin.Forms v4.2021.2.25
Replies: 8
Views: 14732

Re: Annotation Tool Popup doesn't respect placements.

... points to the selected point. The issue is the annotation; It is not being rendered at all. I tried ... this Annotation tool, bool floating, string text ) { tool.Shape.TextFormat = TextFormat.Html; ... 0 || !AnnotationTool.Active ) return; g.Brush.Color = Color.LightSkyBlue; if ( Device.RuntimePlatform ...
by Christopher
Thu Jul 16, 2020 8:07 am
Forum: .NET
Topic: Font settings on marks tip.
Replies: 1
Views: 8654

Re: Font settings on marks tip.

... not contain any properties for modifying the text font. If you want a pop-up with text with custom ... you can use one of TeeChart's classes, e.g. Annotation _annotation = new Annotation(); Bar _bar ... + _bar.YValues[index]; _annotation.Shape.Font.Color = Color.Red; } _annotation.Active = index ...
by Christopher
Thu Feb 22, 2018 6:57 pm
Forum: .NET
Topic: Annotation and 3D Graph.
Replies: 1
Views: 6922

Re: Annotation and 3D Graph.

... correctly for 2D charts, but without any text for 3D charts. I have added this issue to our ... to this issue is to manually draw a similar annotation using the AfterDraw event, e.g. Annotation ... g.ChartYCenter, width, height); g.Pen.Color = Color.Red; g.Brush.Color = Color.Yellow; ...
by t-chizzle
Thu Oct 27, 2016 11:16 am
Forum: .NET
Topic: WPF ScrollPager Not Working
Replies: 6
Views: 13536

WPF ScrollPager Not Working

... result.PNG Chart.Series.Clear(); Chart.Header.Text = "Plot"; Chart.Axes.Automatic = true; Chart.Legend.TopLeftPos ... Chart.Tools.Add(_annotate = new Annotation()); _scrollPager = new ScrollPager(); ... = series; _nearestPoint.Brush.Color = _scrollPager.PointerHighlightColor; _nearestPoint.DrawLine ...
by Christopher
Thu Jul 28, 2016 9:09 am
Forum: .NET
Topic: How to display annotation text vertically.
Replies: 6
Views: 12803

Re: How to display annotation text vertically.

... void TChart1_AfterDraw(object sender, Graphics3D g) { string s = "This Text"; Rectangle rect = Utils.FromLTRB(200, 100, 220, 102 + Utils.Round(g.TextWidth(s))); g.Pen.Color = Color.Red; g.Brush.Color = Color.Yellow; g.Rectangle(rect); g.RotateLabel(rect.Left, ...
by biji
Wed Jul 27, 2016 2:07 pm
Forum: .NET
Topic: How to display annotation text vertically.
Replies: 6
Views: 12803

How to display annotation text vertically.

Hi, I am trying to add some text description on the chart after drawing. I don't ... vertically? anSeries1 = new Steema.TeeChart.Tools.Annotation(mainTChart.Chart); anSeries1.Text = text; ... = true; anSeries1.Shape.Font.Color = Color.Blue; anSeries1.Shape.Font.Bold = true; ...
by Narcís
Mon Oct 05, 2015 11:12 am
Forum: .NET
Topic: Annotation Tool Change Text Color programmatically
Replies: 1
Views: 6035

Re: Annotation Tool Change Text Color programmatically

Dear Quant,

Searching for "annotation text color" with this forum board search options returns those results. Among them there's this post which should answer your question.
by Quant
Mon Oct 05, 2015 10:44 am
Forum: .NET
Topic: Annotation Tool Change Text Color programmatically
Replies: 1
Views: 6035

Annotation Tool Change Text Color programmatically

Dear Steema,
I am using Annotation tool on my Tchart winapp i wanted to change its text color guide me how to do the same.
by Christopher
Wed Sep 30, 2015 8:13 am
Forum: .NET
Topic: To set margin of scroll Pager chart
Replies: 2
Views: 7170

Re: To set margin of scroll Pager chart

... void InitializeChart() { tChart1.Header.Text = "Scroll Pager Tool Demo"; tChart1.Series.Add(series ... tChart1.Tools.Add(annotate = new Annotation()); tChart1.GetAxesChartRect += TChart1_GetAxesChartRect; ... blackTheme.Apply(); point.Brush.Color = tool.PointerHighlightColor; point.DrawLine ...
by Christopher
Mon Mar 30, 2015 8:47 am
Forum: .NET
Topic: Unique Bargraph
Replies: 1
Views: 4707

Re: Unique Bargraph

... to comment. One suggestion would be the use of Annotation tools, e.g. Steema.TeeChart.Silverlight.Styles.Bar ... = false; tChart1.Panel.Color = Colors.White; tChart1.Walls.Back.Color = ... - annotation1.Left; annotation1.Text = "Here comes text, here come" + Utils.NewLine ...
by Christopher
Tue Mar 10, 2015 9:21 am
Forum: .NET
Topic: While zooming chart annotation misplaced
Replies: 1
Views: 4736

Re: While zooming chart annotation misplaced

Quant, You can achieve this by fixing the annotation position to the position of one of the ... tAnnotation.Shape.Font.Color = Color.White; tAnnotation.Shape.Font.Size ... = Color.Black; tAnnotation.Text = "Annotation String"; tAnnotation.Shape.CustomPosition ...
by Quant
Tue Mar 10, 2015 5:38 am
Forum: .NET
Topic: While zooming chart annotation misplaced
Replies: 1
Views: 4736

While zooming chart annotation misplaced

i placed annotation on my chart using following code Steema.TeeChart.Tools.Annotation ... tAnnotation.Shape.Font.Color = Color.White; tAnnotation.Shape.Font.Size = 10; tAnnotation.Shape.Color = Color.Black; tAnnotation.Text = strVal; tAnnotation.Shape.CustomPosition = true; ...
by Christopher
Fri Jul 04, 2014 8:19 am
Forum: .NET
Topic: Annotation tool drawing order
Replies: 1
Views: 5235

Re: Annotation tool drawing order

... Bar(tChart1.Chart); bar.FillSampleValues(); Annotation anno = new Annotation(tChart1.Chart); ... = 200; anno.Shape.Top = 100; anno.Text = "Annotation" + Utils.NewLine + "New" + Utils.NewLine ... sender, Graphics3D g) { g.Font.Color = Color.White; g.TextOut(205, 105, "AfterDrawValues"); ...
by Petr
Thu Jul 03, 2014 9:57 am
Forum: .NET
Topic: Annotation tool drawing order
Replies: 1
Views: 5235

Annotation tool drawing order

Hi, i'm using Cursor tool and annotation tool and color line tool in my programm. I use AfterDrawEvent to annotation ... DrawCursorToolMarks( g ) - draws text and circles on the chart, and MakeAnnotationForCursorTool() ...