Search found 16 matches

by Brian Begy
Wed Jan 28, 2009 6:23 pm
Forum: .NET
Topic: DateTimeFormat doesn't work on custom axes
Replies: 1
Views: 3947

DateTimeFormat doesn't work on custom axes

X axis is date data. Y is numeric data of tank level readings. Axis readingAxisH = new Axis(true, false, lineChart); readingAxisH.StartPosition = 0; readingAxisH.EndPosition = 95 readingAxisH.Labels.DateTimeFormat = "h:mtt"; readingAxisH.Labels.MultiLine = true; readingAxisH.Labels.Angle = 60; lineC...
by Brian Begy
Wed Jan 28, 2009 6:21 pm
Forum: .NET
Topic: Client side mouseovers for data
Replies: 1
Views: 4336

Client side mouseovers for data

Here’s what I need to do. Build a line graph. Save it as an image. Stream the image to the client. ( I need to do this because we are using Sharpoint) Use javascript mouseovers to show information on the data points. The javascript mouseovers are easy if I know the pixel coordinates of the data poin...
by Brian Begy
Wed May 25, 2005 9:49 pm
Forum: .NET
Topic: Export gives a black background
Replies: 1
Views: 4739

Export gives a black background

My chart looks fine on the windows form.

Steema.TeeChart.Export.JPEGFormat.SaveToFile(Me.TChart1.Chart, FileName)

Gives us a jpeg with a black background.
I’’m running 1.1.1879.21176

This problem was reported in the forums a year ago, but it still happens.

Where is the patch for this bug?
by Brian Begy
Mon Jun 28, 2004 5:49 pm
Forum: .NET
Topic: Make chart an imagelink
Replies: 5
Views: 11797

Rather than make another round trip to the server, can I just render my chart manually by creating an image tag and adding the url of the image?

How do I get my chart's file name?
by Brian Begy
Mon Jun 28, 2004 12:03 pm
Forum: .NET
Topic: Points line not appearing
Replies: 3
Views: 8684

We need to see our missing datapoints, so a line would give the illusion of continuity where none exists.
by Brian Begy
Mon Jun 28, 2004 12:02 pm
Forum: .NET
Topic: Make chart an imagelink
Replies: 5
Views: 11797

Pep,

It is a webchart on an asp.net webpart. The only problem is an onclick would require a postback and a server.transfer, no?

-Brian
by Brian Begy
Mon Jun 28, 2004 12:44 am
Forum: .NET
Topic: Points line not appearing
Replies: 3
Views: 8684

Points line not appearing

This is probably a simple problem. I can't get my points to connect. point1 = New Steema.TeeChart.Styles.Points(levelsChart.Chart) 'add data For Each objReading In colReadings point1.Add(objReading.ReadingTime, objReading.Gallons) Next point1.XValues.DateTime = True point1.Marks.Visible = False poin...
by Brian Begy
Mon Jun 28, 2004 12:39 am
Forum: .NET
Topic: Make chart an imagelink
Replies: 5
Views: 11797

Make chart an imagelink

Is there an easy way to make a webchart into an image link? Click anywhere and be taken to http://www.foobar.com? Seems like a simple concept, but noone seems to have every asked this question before.
by Brian Begy
Fri Jun 04, 2004 2:03 am
Forum: .NET
Topic: Match 2 chart heights
Replies: 3
Views: 8728

customsize?

What unit is customsize rendered in?
It isn't pixels.
by Brian Begy
Thu Jun 03, 2004 8:25 pm
Forum: .NET
Topic: Match 2 chart heights
Replies: 3
Views: 8728

Match 2 chart heights

I have two charts side by side. One displays bar data and the other line data. The bar graph contains only one datapoint and has no bottom axis label. The line chart has a date label on the bottom axis and contains 100 data points. I need both charts to be the same height and line up with one anothe...
by Brian Begy
Thu Jun 03, 2004 2:24 am
Forum: .NET
Topic: Set background in code has no effect?
Replies: 1
Views: 5903

Set background in code has no effect?

I have an asp.net page that needs to have graphs added dynamically. Most of the chart functions behave normally, but I can't change the background color or the border style of my charts. quickChart.BorderStyle = BorderStyle.None quickChart.BackColor = Color.Transparent quickChart.BorderColor = Color...
by Brian Begy
Mon May 17, 2004 6:33 pm
Forum: .NET
Topic: dateformat bug/incorrect documentation
Replies: 3
Views: 8675

Ok, then please fix the help file

So the documentation in the help file is wrong then. Shouldn't this be considered a problem?

If I have a question about tee chart date formats, I'm not going to look up the answer on msdn, I'm going to use the (incorrect) help file that shipped with tee chart.
by Brian Begy
Wed May 12, 2004 9:19 pm
Forum: .NET
Topic: dateformat bug/incorrect documentation
Replies: 3
Views: 8675

dateformat bug/incorrect documentation

Hi. I have a datatable that contains a column of dates and a column of integers. I am graphing the dates on the x axis of a points chart and the integers on the y axis. The date label formats do not behave as the documentation would indicate. It says that mygraph.Chart.Axes.Bottom.Labels.DateTimeFor...
by Brian Begy
Wed May 12, 2004 9:11 pm
Forum: .NET
Topic: ASP.NET Render error
Replies: 3
Views: 9078

Jose,

It seems that this particular issue is unlikely to occur very often, but in general, the error messages should provide some guidance to developers.
by Brian Begy
Tue May 11, 2004 3:28 pm
Forum: .NET
Topic: ASP.NET Render error
Replies: 3
Views: 9078

FIXED

I solved it through "voodoo programming" - I changed one variable at a time until it worked.

It turns out, one has to manually populate the myGraph.ID property. I would suggest some enhancement to the error handler to explain what actually went wrong where.