Search found 12 matches

by Miguel
Tue Aug 16, 2005 8:02 am
Forum: .NET
Topic: Unable to set font size and other attributes on RADAR Axes
Replies: 6
Views: 10189

Hi Mike, Please, try this: Dim rd As New Steema.TeeChart.Styles.Radar(TChart1.Chart) rd.Add(100, "Label1") rd.Add(200, "Label2") rd.Add(300, "Label3") rd.Add(400, "Label4") rd.CircleLabels = True rd.CircleLabelsInside = True rd.CircleLabelsRotated = True rd.CircleLabelsFont.Size = 12 rd.CircleLabels...
by Miguel
Fri Aug 12, 2005 9:33 am
Forum: .NET
Topic: Unable to set font size and other attributes on RADAR Axes
Replies: 6
Views: 10189

Hi Mike, You can do it in the following way: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim rd As New Steema.TeeChart.Styles.Radar(TChart1.Chart) rd.FillSampleValues() TChart1.Axes.Right.Title.Text = "Right" TChart1.Axes.Right.Title.Font.Co...
by Miguel
Fri Aug 12, 2005 9:02 am
Forum: .NET
Topic: Print changed with maintenance release
Replies: 5
Views: 9637

Hi Avatar, I can see now what you say. It is a problem of refreshing the preview window the first time you come in. Once you enter, if you change the margins manually through the window controls all works ok. Thanks for the notification and sorry for the inconvenience. I'll add this issue to our bug...
by Miguel
Thu Aug 11, 2005 3:00 pm
Forum: .NET
Topic: Unacceptable Performance for Data Export (.ten, Excel, etc.)
Replies: 14
Views: 20432

Hi Walt,

Currently we don't have a evaluation version for the latest release. We will probably update it in a few weeks. In any case, until then you can use June version to evaluate the new features of version 2 and see the differences with version 1.
by Miguel
Thu Aug 11, 2005 9:56 am
Forum: .NET
Topic: Visual Studio versions
Replies: 3
Views: 7159

Hi Hermes,

Sorry about that. Unfortunately, we cannot give you a definite answer to this question yet. We'll contact you as soon as any decision regarding this had been made.
by Miguel
Thu Aug 11, 2005 9:12 am
Forum: .NET
Topic: Print changed with maintenance release
Replies: 5
Views: 9637

Hi Avatar, You could customize the default margins to your needs in the following way: tChart1.Chart.Printer.MarginUnits = Steema.TeeChart.PrintMarginUnits.Percent; tChart1.Chart.Printer.Margins.Left = 10; tChart1.Chart.Printer.Margins.Top = 10; tChart1.Chart.Printer.Margins.Right = 10; tChart1.Char...
by Miguel
Thu Aug 11, 2005 8:34 am
Forum: .NET
Topic: Dynamic chart jiggles up and down a little
Replies: 2
Views: 6175

Hi Terry,

Have you set the Min/Max values of the left axis with a spread wide enough so that all y values are inside?

Code: Select all

tChart1.Axes.Left.SetMinMax(min,max);
If this does not resolve your problem, please send an example of your code.
by Miguel
Wed Aug 10, 2005 8:50 am
Forum: .NET
Topic: Unacceptable Performance for Data Export (.ten, Excel, etc.)
Replies: 14
Views: 20432

Hi Walt,

Thanks for your observations. In the current release, 2.0.2040.15119, the results for the same tests (in a P4, 2.5GHz, 512Mb RAM) are:

Color Grid, 200x200, exporting into a .ten file: about 1 second.
Bubble, 40000 points, exporting into a .ten file: about 10 seconds.
by Miguel
Tue Aug 09, 2005 3:12 pm
Forum: .NET
Topic: Timestep greater than a Year
Replies: 6
Views: 10641

Hi Avatar, Another option to resolve your problem could be using custom labels. You can modify the original code in the following way: private Steema.TeeChart.Styles.Line line1; private void InitializeChart() { line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart); tChart1.Axes.Bottom.Labels.Angle ...
by Miguel
Thu Aug 04, 2005 10:12 am
Forum: .NET
Topic: Area Series whacky display
Replies: 4
Views: 9053

Hi Randy, Have you tried fixing the origin for each areaSeries? I mean in this way: private void PopulateAreaChart(SpatialData sd) { tchtArea.Series.RemoveAllSeries(); tchtArea.Series.Clear(); Steema.TeeChart.Styles.Area areaSeries; tchtArea.Axes.Left.Title.Text = cmbTrait.Text; foreach(MapUnitGeome...
by Miguel
Thu Aug 04, 2005 8:51 am
Forum: .NET
Topic: Markers on Chart
Replies: 4
Views: 9904

Hi Terry, If I understand you correctly, what you need is adding a custom text at some location inside the chart... This can be done through the Annotation tool and you can see some examples in the features demo of TeeChart (see All features / Tools / Annotation). If you need further help, please do...
by Miguel
Thu Aug 04, 2005 7:52 am
Forum: .NET
Topic: Missing Tick Marks on Bottom Axis
Replies: 2
Views: 6665

Hi TeeNee, You're right, the default behaviour for the bottom axis should be the same as for the left axis. I'll add this issue to our bug list to be fixed for future releases. In the meantime you can set the interval between the grid lines by using the Increment property from the Bottom Axis, e.g.:...