Search found 9 matches

by Rogier
Thu Mar 17, 2005 4:06 pm
Forum: .NET
Topic: AutoScaling Y-axis when date-axis scale changes
Replies: 1
Views: 4455

AutoScaling Y-axis when date-axis scale changes

Hello, If you look at the following chart, you'll see a plain series and two average series. These two average series calculate the average of the plain series over a period of 50 and 100 days. http://ontwikkel.erisbasic.nl/example1.png The date axis starts at 18/01/05 and ends at 18/03/05. As you c...
by Rogier
Fri Jan 21, 2005 4:34 pm
Forum: .NET
Topic: Problem loading a .ten file
Replies: 10
Views: 14171

During the execution of the load method.
by Rogier
Wed Jan 19, 2005 2:17 pm
Forum: .NET
Topic: Problem loading a .ten file
Replies: 10
Views: 14171

<Previous Post> The number of bytes from the stream are exactly the same as the original .ten file has, so no problems there I think. As a matter of fact, just now I saved the stream from the database to another .ten file and imported that from the editor and all works fine. I also tried the follow...
by Rogier
Mon Jan 10, 2005 1:46 pm
Forum: .NET
Topic: Problem loading a .ten file
Replies: 10
Views: 14171

A small note on the previous post, the first codeblock shows
a Customer class, this should be a Layout class.
by Rogier
Mon Jan 10, 2005 1:44 pm
Forum: .NET
Topic: Problem loading a .ten file
Replies: 10
Views: 14171

I use the following code to get the stream from the database. The database is a Microsoft SQLServer 2000. class Customer { ... public Stream GetStream() { MemoryStream stream; LayoutDataLayer dal = <CLASS THAT REPRESENTS THE DATABASE API>; ... // Only retrieve the bytes from the database the first t...
by Rogier
Fri Jan 07, 2005 2:27 pm
Forum: .NET
Topic: Problem loading a .ten file
Replies: 10
Views: 14171

I've put the position to 0 as you suggested, but that doesn't seem to help. If I use the same stream to save the data to a file and then load it with the editor, the template works just fine. Therefore I think it is not the stream that is the problem. I tried moving my code out of the ASP.Net contex...
by Rogier
Thu Jan 06, 2005 9:33 am
Forum: .NET
Topic: Using Titles of Axes
Replies: 2
Views: 5294

Thanks!
by Rogier
Wed Jan 05, 2005 4:45 pm
Forum: .NET
Topic: Using Titles of Axes
Replies: 2
Views: 5294

Using Titles of Axes

The question is about the following chart. http://ontwikkel.erisbasic.nl/tn.png I would like to be able to vertically align the titles of the vertical axes, but I can's seem to get this done. Another good alternative would be to be able to relatively position some annotations inside the chart, but t...
by Rogier
Wed Jan 05, 2005 4:29 pm
Forum: .NET
Topic: Problem loading a .ten file
Replies: 10
Views: 14171

Problem loading a .ten file

Hi, I'm having some problems loading a .ten file from a stream. Using the editor I saved a chart layout in .ten format. This .ten file was then imported into a database blob field. An .aspx file reads this field into a MemoryStream which is loaded, using chart.import.template.load(stream), into a ne...