Any time you have a complicated graph to draw, you can consider use pure java to draw on server side and request/show as a resource image dynamically . Speed is not gonna match a client side draw though.
D*e
5 楼
就是这种
g*y
6 楼
We need some editing capability, so generate a graph is not an option for us.
dynamically
【在 g*****g 的大作中提到】 : Any time you have a complicated graph to draw, you can consider use pure : java to draw on server side and request/show as a resource image dynamically : . Speed is not gonna match a client side draw though.
k*u
7 楼
GWT or Flex, both are client side and give you editability, and much clean to program than JS.
us.
【在 g**********y 的大作中提到】 : We need some editing capability, so generate a graph is not an option for us. : : dynamically
g*y
8 楼
That's good alternative. But very strange, even Google itself rarely use GWT.
【在 k****u 的大作中提到】 : GWT or Flex, both are client side and give you editability, and much clean : to program than JS. : : us.
o*1
9 楼
不是吧。google wave不就是用gwt吗 google 老的 app 写的时候还没有gwt呢。
GWT. clean
【在 g**********y 的大作中提到】 : That's good alternative. But very strange, even Google itself rarely use GWT.
table。 No need to use tables. You could use absolute positions in CSS to achieve the same effects. Also there are javascript libraries for drawing charts.
Absolute position won't work here because it is part of a dynamic page. It is impossible to calculate how much draw space I have. I first tried to use div + css border. To be frank, floated div is nightmare , even with a CSS missing manual by hand, it is too tall a task for me.
【在 m******t 的大作中提到】 : : table。 : No need to use tables. You could use absolute positions in CSS to achieve : the same effects. : Also there are javascript libraries for drawing charts.
s*n
15 楼
This is cool. I guess you can use just one table with 4x48 cells
【在 g**********y 的大作中提到】 : We need some editing capability, so generate a graph is not an option for us. : : dynamically
g*y
19 楼
What is blend? can you give a link? Do you mean Microsoft Expression Blend 3? I seriously doubt it, hook it up with any XML defined tree from database, allow user to edit it in web and save it back to database? I can't imagine any tool can easily handle it without much coding. My experience with any software/package is: More powerful software => Less Code & Beautiful result for task suppose to do => Much much harder to customize for your need when it push to some degree, it is simply mission imp
【在 c**t 的大作中提到】 : blend is the way to go : : us.
m*t
20 楼
How is it impossible? You can find out the size of current client area and go from there. nightmare No, don't use float divs. Use one div as the container, then absolutely position little div containers within. You could use javascript to dynamically set the dimensions and positions. Trust me, I did something like this before.
【在 g**********y 的大作中提到】 : Absolute position won't work here because it is part of a dynamic page. It : is impossible to calculate how much draw space I have. : I first tried to use div + css border. To be frank, floated div is nightmare : , even with a CSS missing manual by hand, it is too tall a task for me.
【在 m******t 的大作中提到】 : : How is it impossible? You can find out the size of current client area and : go from there. : nightmare : No, don't use float divs. Use one div as the container, then absolutely : position little div containers within. You could use javascript to : dynamically set the dimensions and positions. : Trust me, I did something like this before.
m*t
22 楼
It's relative to the first containing block with a non-static position specification. IOW, you could conceptually do:
...
And the blocks above would be positioned within the container's own coordinate system.