Search found 14 matches

by MCD
Fri Nov 16, 2007 5:40 pm
Forum: ActiveX
Topic: SImple Question - No answer
Replies: 3
Views: 6893

THanks that worked.. can you show me where I can find where this example is in the documentation? I have been searching and reading for nearly 3 hours with no help... I only do ASP code so the other examples look like Greek to me.

Thanks
Jason
by MCD
Fri Nov 16, 2007 4:02 pm
Forum: ActiveX
Topic: SImple Question - No answer
Replies: 3
Views: 6893

SImple Question - No answer

I create new series using ASP script: Chart.AddSeries(4) How can I make the size of the points smaller than the default block? I want like a 4 pixel size dot or atleast somewhat smaller than the defaut size.. Running TeeChart Active x ver 6 Documentation is very very hard to follow of course I could...
by MCD
Wed Jul 18, 2007 12:15 pm
Forum: ActiveX
Topic: Print and Print Preview in V6
Replies: 1
Views: 5157

Print and Print Preview in V6

Hello, We are having a coder develop a web application for us using ASP and the ActiveX TeeChart. We have several other applications on the same server on the same domain, heck in the same root folder and all of them work great, we can print and print preview etc... I gave the coder an example page ...
by MCD
Tue Jan 25, 2005 8:26 pm
Forum: ActiveX
Topic: Quick control Help - AutomaticMinimum
Replies: 9
Views: 17306

Thanks again, however I am running TeeChart 5 and this was not installed. I have downloaded the program (thanks) it appears to be a Vb application. When I click to view source it only has a "configure" button. When I click it is says please locate the TeeChart 6 Demo files. Well as you can guess I d...
by MCD
Wed Jan 19, 2005 6:38 pm
Forum: ActiveX
Topic: Quick control Help - AutomaticMinimum
Replies: 9
Views: 17306

Thanks for your continued help, however I must be completely blind, becuse I still can not find what project you are talking about. There are no shortcuts under the Start > Programs however I CAN go to the folder where it was installed (and there are tons of files and examples) but I can not find an...
by MCD
Fri Jan 14, 2005 1:01 pm
Forum: ActiveX
Topic: Quick control Help - AutomaticMinimum
Replies: 9
Views: 17306

I am not sure I follow what you are telling me to do. I am looking at my demo files that came with Ver 5 and there appears to be nothing matching what you are telling me to go to. I loaded the Example so maybe you can give me a direct link http://www.miamiconservancy.org/TeeChartEXAMPLE/IIS%20%26%20...
by MCD
Wed Jan 12, 2005 6:40 pm
Forum: ActiveX
Topic: Quick control Help - AutomaticMinimum
Replies: 9
Views: 17306

We need to evenly space the records between dates no matter how many we get for one small time interval. Currently it evenly spaces the records so if we were to get 100 records for July and only 3 in August and September then We would like to have the Axis automatically adjst teh graph so that the d...
by MCD
Tue Jan 11, 2005 6:09 pm
Forum: ActiveX
Topic: Quick control Help - AutomaticMinimum
Replies: 9
Views: 17306

Quick control Help - AutomaticMinimum

I have a dataset that records a date/Time and a Value and we have a website that a user can query a date range. TeeChart Graphs a line graph see http://www.miamiconservancy.org/Water_Resource_Monitoring/WaterResourceApplication/ALERT_Application/StageDataDisplay.asp?Duration=&SensorID=4811&datestart...
by MCD
Fri Jan 23, 2004 1:33 pm
Forum: ActiveX
Topic: Date scaling TeeChart 5 Pro
Replies: 10
Views: 22620

Thanks for you continued support with this. We had another coder fix the problem and here is our Solution .. hopefully this will help others ' FINDING THE FIRST DATA AND DATE rst.movefirst dim PreviousDate, PreviousLevel ' These variables hold the last date and observed Level while isnull(rst("min")...
by MCD
Thu Jan 22, 2004 1:44 pm
Forum: ActiveX
Topic: Date scaling TeeChart 5 Pro
Replies: 10
Views: 22620

I found the problem if isnull(rst("min")) or rst("min")=0 then ' there is a null value here, we should not show it chart.series(0).addxy rst("date"),rst("min"),"",RGB(255,255,255) else chart.series(0).addxy rst("date"),rst("min"),"",RGB(34,150,123) showLow = rst("min") Lastdate = rst("date") end if ...
by MCD
Wed Jan 21, 2004 5:32 pm
Forum: ActiveX
Topic: Date scaling TeeChart 5 Pro
Replies: 10
Views: 22620

That makes the graph change so it looks correct I think.... however the Data Left vertcal data is ranging from 37,500 to like 33,000 and what is not right is the data points only range from 626 to 608 and the date range 8/30/1901 to 9/17/1901 and the actual date range is 4/26/1990 to 9/1/2003 so som...
by MCD
Tue Jan 20, 2004 2:34 pm
Forum: ActiveX
Topic: Date scaling TeeChart 5 Pro
Replies: 10
Views: 22620

We are using a line. Here is the Code if that helps <!--METADATA NAME="TeeChart Pro v5 ActiveX Control" TYPE="TypeLib" UUID="{B6C10482-FB89-11D4-93C9-006008A7EED4}"--> <!-- #include fileconnect.inc" --> <% response.buffer=true dim h, w h=request("h") w=request("w") 'test for emply values if w=0 then...
by MCD
Fri Jan 16, 2004 12:53 pm
Forum: ActiveX
Topic: Date scaling TeeChart 5 Pro
Replies: 10
Views: 22620

We are using this entry: while not rst.eof if isnull(rst("min")) or rst("min")=0 then chart.series(0).addnull rst("date") else chart.Series(0).Add rst("min"), rst("date"),RGB(34,150,123) end if Chart.Series(0).XValues.DateTime = True rst.movenext Thanks Jason
by MCD
Wed Jan 14, 2004 7:51 pm
Forum: ActiveX
Topic: Date scaling TeeChart 5 Pro
Replies: 10
Views: 22620

Date scaling TeeChart 5 Pro

We have a massive database over 100,000 that hold a Date and a value. Our problem is that we have periods of missing data for example I may have a 100 values every year from 1950 to 1960 then nothing again until 1980 and then continuously since then. When the graph is displayed the is equally dividi...