Search found 24 matches

by Lizabeth
Mon May 03, 2004 3:30 pm
Forum: .NET
Topic: Labels on depth axix
Replies: 1
Views: 5739

Labels on depth axix

Hi, How do I show the values on the depth axix of a Point3D series? I have added values to such a series using the code: scoreSeries3D.Add((double)scoreDataX , (double)scoreDataY , (double)scoreDataZ , scorePlotIDs .ToString(), defaultColor) I have added that series to a plot: scorePlot.Series.Add(s...
by Lizabeth
Mon May 03, 2004 3:20 pm
Forum: .NET
Topic: Set initial zoom
Replies: 9
Views: 17072

Set initial zoom

will automatically unzoom and rescale axis scales But this is not what I want! I want the user to be the one who zooms out or in - about 10% in each step. Say that the user has zoomed in 50% in a previous session. When she opens the application again I first want the chart to be zoomed those 50%. A...
by Lizabeth
Wed Apr 28, 2004 8:34 am
Forum: .NET
Topic: Set initial zoom
Replies: 9
Views: 17072

Set initial zoom

Hi, I need to set the initial zoom in the chart to values saved from the user's last session. I.e. if the user has zoomed to 2:1, I want the chart to be zoomed to 2:1 when the users starts the application again. I have tried to use the SetMinMax method for the axes, but this prevents the user to zoo...
by Lizabeth
Mon Apr 26, 2004 11:58 am
Forum: .NET
Topic: Border color around series spots
Replies: 3
Views: 8727

Single spot border color

Ok, but how do I set the color for one single spot, not for a whole series. I.e. I want some spots in a series to have a blue border and some a black one.
by Lizabeth
Mon Apr 26, 2004 9:12 am
Forum: .NET
Topic: Border color around series spots
Replies: 3
Views: 8727

Border color around series spots

Is it possible to set the color of the border around a spot in a series?

I do not want it to remain black when I set the color of the spot to something else than black using the code:

mySeries.Color = Color.Blue;

Best regards
Elisabeth
by Lizabeth
Wed Apr 07, 2004 8:07 am
Forum: .NET
Topic: Change labels on x-axis
Replies: 4
Views: 9701

Next maintenance

Hi,

When does the next maintenance release come?

Regards
by Lizabeth
Tue Mar 30, 2004 9:09 am
Forum: .NET
Topic: Change labels on x-axis
Replies: 4
Views: 9701

Retrieving data

Hi, Thank you! I also wanted to know the following: When clicking on a point in the series I want to be able to find out what the string value is for that particular point. What property or method do I use to accomplish this? I also want to do the opposite - when I have a known string, I want to loo...
by Lizabeth
Thu Mar 25, 2004 3:21 pm
Forum: .NET
Topic: Making a shape series not clickable
Replies: 1
Views: 5808

Making a shape series not clickable

I have a chart with two series: one Points series and one Shape series. Most of the points in the point series is located on top of the shape series. I want to be able to click the points but not the shape. When the point is located on top of the shape it is the shape that becomes clicked (the point...
by Lizabeth
Thu Mar 25, 2004 2:57 pm
Forum: .NET
Topic: Change labels on x-axis
Replies: 4
Views: 9701

Change labels on x-axis

I have added a lot of data to a Points series through the Series.Add(double x, double y, string text, System.Drawing.Color color) method. The labels and values on the x-axis then turns out to be the strings added. I do not want this! I want the labels and values on the x-axis to be the x-values adde...