473,657 Members | 2,576 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

plot graphic lines and text dynamically

I'm looking for a method to plot graphic lines and text for a bracket-like
display with multiple tiers in a browser. I'm familiar with GD for
outputting dynamic graphics, but have never utilized its native drawing
capabilities. Is it well-suited for this task? Any better alternatives?

Thanks.
Jan 16 '06 #1
9 1793
d
"Bosconian" <bo*******@plan etx.com> wrote in message
news:Ot******** ************@co mcast.com...
I'm looking for a method to plot graphic lines and text for a bracket-like
display with multiple tiers in a browser. I'm familiar with GD for
outputting dynamic graphics, but have never utilized its native drawing
capabilities. Is it well-suited for this task? Any better alternatives?

Thanks.


It's fine for that purpose (heck, that's why it was made ;))

You could also try experimenting with generating flash, as that will give
you a vector graphic, which obviously resizes a lot better...

dave
Jan 17 '06 #2
"d" <d@example.co m> wrote in message
news:hp******** *******@text.ne ws.blueyonder.c o.uk...
"Bosconian" <bo*******@plan etx.com> wrote in message
news:Ot******** ************@co mcast.com...
I'm looking for a method to plot graphic lines and text for a bracket-like display with multiple tiers in a browser. I'm familiar with GD for
outputting dynamic graphics, but have never utilized its native drawing
capabilities. Is it well-suited for this task? Any better alternatives?

Thanks.


It's fine for that purpose (heck, that's why it was made ;))

You could also try experimenting with generating flash, as that will give
you a vector graphic, which obviously resizes a lot better...

dave


I'm also considering DHTML, which would me to combine graphic rules and form
elements.
Jan 17 '06 #3
d
"Bosconian" <bo*******@plan etx.com> wrote in message
news:Dc******** ************@co mcast.com...
"d" <d@example.co m> wrote in message
news:hp******** *******@text.ne ws.blueyonder.c o.uk...
"Bosconian" <bo*******@plan etx.com> wrote in message
news:Ot******** ************@co mcast.com...
> I'm looking for a method to plot graphic lines and text for a bracket-like > display with multiple tiers in a browser. I'm familiar with GD for
> outputting dynamic graphics, but have never utilized its native drawing
> capabilities. Is it well-suited for this task? Any better alternatives?
>
> Thanks.


It's fine for that purpose (heck, that's why it was made ;))

You could also try experimenting with generating flash, as that will give
you a vector graphic, which obviously resizes a lot better...

dave


I'm also considering DHTML, which would me to combine graphic rules and
form
elements.


why would you want to do that? :)
Jan 18 '06 #4
there are other options, like the <canvas> tag in ffx, and SVG, u
should check that too

Jan 18 '06 #5

Bosconian wrote:
I'm looking for a method to plot graphic lines and text for a bracket-like
display with multiple tiers in a browser. I'm familiar with GD for
outputting dynamic graphics, but have never utilized its native drawing
capabilities. Is it well-suited for this task? Any better alternatives?

Thanks.


I am not sure if it is what you want but there is JpGraph at
http://www.aditus.nu/jpgraph/

Have a look.

Regards,
JS

Jan 18 '06 #6
"d" <d@example.co m> wrote in message
news:8m******** *******@text.ne ws.blueyonder.c o.uk...
"Bosconian" <bo*******@plan etx.com> wrote in message
news:Dc******** ************@co mcast.com...
"d" <d@example.co m> wrote in message
news:hp******** *******@text.ne ws.blueyonder.c o.uk...
"Bosconian" <bo*******@plan etx.com> wrote in message
news:Ot******** ************@co mcast.com...
> I'm looking for a method to plot graphic lines and text for a

bracket-like
> display with multiple tiers in a browser. I'm familiar with GD for
> outputting dynamic graphics, but have never utilized its native drawing > capabilities. Is it well-suited for this task? Any better alternatives? >
> Thanks.

It's fine for that purpose (heck, that's why it was made ;))

You could also try experimenting with generating flash, as that will give you a vector graphic, which obviously resizes a lot better...

dave


I'm also considering DHTML, which would me to combine graphic rules and
form
elements.


why would you want to do that? :)


I need to create a visual display linking different form elements together
using graphic rules. One form element relates to another hieratically. The
display would be generated dynamically and DHTML seems like the fastest and
most efficient way to go about it.
Jan 19 '06 #7
"Joseph S." <js****@rediffm ail.com> wrote in message
news:11******** **************@ z14g2000cwz.goo glegroups.com.. .

Bosconian wrote:
I'm looking for a method to plot graphic lines and text for a bracket-like display with multiple tiers in a browser. I'm familiar with GD for
outputting dynamic graphics, but have never utilized its native drawing
capabilities. Is it well-suited for this task? Any better alternatives?

Thanks.


I am not sure if it is what you want but there is JpGraph at
http://www.aditus.nu/jpgraph/

Have a look.

Regards,
JS


Thanks, but I'm beginning to think that generating bitmap graphics is
unnecessary and not flexible enough for my intended purpose.
Jan 19 '06 #8
d
"Bosconian" <bo*******@plan etx.com> wrote in message
news:Ur******** *************** *******@comcast .com...
"d" <d@example.co m> wrote in message
news:8m******** *******@text.ne ws.blueyonder.c o.uk...
"Bosconian" <bo*******@plan etx.com> wrote in message
news:Dc******** ************@co mcast.com...
> "d" <d@example.co m> wrote in message
> news:hp******** *******@text.ne ws.blueyonder.c o.uk...
>> "Bosconian" <bo*******@plan etx.com> wrote in message
>> news:Ot******** ************@co mcast.com...
>> > I'm looking for a method to plot graphic lines and text for a
> bracket-like
>> > display with multiple tiers in a browser. I'm familiar with GD for
>> > outputting dynamic graphics, but have never utilized its native drawing >> > capabilities. Is it well-suited for this task? Any better alternatives? >> >
>> > Thanks.
>>
>> It's fine for that purpose (heck, that's why it was made ;))
>>
>> You could also try experimenting with generating flash, as that will give >> you a vector graphic, which obviously resizes a lot better...
>>
>> dave
>>
>>
>
> I'm also considering DHTML, which would me to combine graphic rules and
> form
> elements.


why would you want to do that? :)


I need to create a visual display linking different form elements together
using graphic rules. One form element relates to another hieratically. The
display would be generated dynamically and DHTML seems like the fastest
and
most efficient way to go about it.


Just beware you're entering a whole world of cross-incompatibility ;)
Jan 19 '06 #9
"d" <d@example.co m> wrote in message
news:2n******** *******@text.ne ws.blueyonder.c o.uk...
"Bosconian" <bo*******@plan etx.com> wrote in message
news:Ur******** *************** *******@comcast .com...
"d" <d@example.co m> wrote in message
news:8m******** *******@text.ne ws.blueyonder.c o.uk...
"Bosconian" <bo*******@plan etx.com> wrote in message
news:Dc******** ************@co mcast.com...
> "d" <d@example.co m> wrote in message
> news:hp******** *******@text.ne ws.blueyonder.c o.uk...
>> "Bosconian" <bo*******@plan etx.com> wrote in message
>> news:Ot******** ************@co mcast.com...
>> > I'm looking for a method to plot graphic lines and text for a
> bracket-like
>> > display with multiple tiers in a browser. I'm familiar with GD for
>> > outputting dynamic graphics, but have never utilized its native

drawing
>> > capabilities. Is it well-suited for this task? Any better

alternatives?
>> >
>> > Thanks.
>>
>> It's fine for that purpose (heck, that's why it was made ;))
>>
>> You could also try experimenting with generating flash, as that will

give
>> you a vector graphic, which obviously resizes a lot better...
>>
>> dave
>>
>>
>
> I'm also considering DHTML, which would me to combine graphic rules and > form
> elements.

why would you want to do that? :)


I need to create a visual display linking different form elements together using graphic rules. One form element relates to another hieratically. The display would be generated dynamically and DHTML seems like the fastest
and
most efficient way to go about it.


Just beware you're entering a whole world of cross-incompatibility ;)


You're right although no matter what approach one takes you always run the
risk of excluding somebody. It's true with browsers AND life. :-)
Jan 20 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
17690
by: googlinggoogler | last post by:
Hiya, I've got a PIC microcontroller reading me humidity data via rs232, this is in ASCII format. I can view this data easily using hyperterminal or pyserial and convert it to its value (relative humidty with ord(input)) But what im trying to do is plot the data in real time, ideally with pylab - as it looks simple to use and simple is the way i want to go! My code is below, it doesnt show a graph, I was wondering whether
0
1037
by: PremKumar | last post by:
I want to plot the lines in my form given only X and Y coordinates and I have to plot lines X and Y according to the given Surveyid.FOR ex:- x y Surveyid 10 10 5 12 12 5 17 17 5 27 27 5 31 31 5 33 33 14
1
5704
by: hamil | last post by:
I am trying to print a graphic file (tif) and also use the PrintPreview control, the PageSetup control, and the Print dialog control. The code attached is a concatination of two examples taken out of a Microsoft book, "Visual Basic,Net Step by Step" in Chapter 18. All but the bottom two subroutines will open a text file, and then allow me to use the above controls, example 1. The bottom two subroutines will print a graphic file, example...
1
1285
by: Chris | last post by:
Is it possible (I hope it is...) to write a piece of software in C# (Visual Studio 2005) that will generate a graphic file? I mean to launch the application with a parameter (i.e a text) and the application will save on disk a .bmp file The input text should be written in the file as a part of the background. Is it very sophisticated?
6
3810
by: redcic | last post by:
Hi all, I've just downloaded scipy v 0.5.2 and I would like to be able to draw plots. I've tried: import scipy.gplt import scipy.plt import scipy.xplt and none of them work. Are these modules still included in scipy ? If not, where can I find them ?
3
6484
by: python101 | last post by:
I would like to plot something like Sin(x), Cos(x), etc using python, I wonder if python has built-in graphic class for plot.
0
1842
by: jrl | last post by:
I'm new to using XML, so I'm seeking some general pointers about approaching a project. I'd like to read the sitemap xml file, and generate a graphic representation of the website from the site map. I would like to do this dynamically (creating the page from the current sitemap file). I'm wondering if there are some built in functions I can use, for example to: 1) parse the xml file, creating units at each node 2) interpret levels within...
1
2422
by: oyinbo55 | last post by:
I am trying to use the pylab plot command on my laptop running Ubuntu 6.06 (Dapper). Although the plot command works fine on my XP desktop at work, I cannot open the plot window on the laptop. I edited matplotlibrc to change interactive: to "True". In idle, I entered the commands: The terminal window closed abruptly when I typed the closing parenthesis. I have been warned not to use the show() command in interactive mode. I tried:
1
5580
by: kjb034 | last post by:
I have the following macro. It works fine, creating an XY scatter plot in Excel 2003, but when one of my users runs it in Excel 2007, it creates a scatter plot with lines. Why does it do this? I am using "ChartType = xlXYScatter", not xlXYScatterLines. Public Sub CreateChart(ByVal viLabeledSeries As Integer, ByVal viNonLabeledSeries As Integer, ByVal vsWorkbookName As String, ByVal vsPopulationName As String, ByVal vsPrimaryAxisTitle...
0
8305
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8732
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8503
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8605
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7324
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4151
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4302
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1953
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.