DojoX is a collection of subprojects provided by Dojo committers .Projects may or may not depend on other top-level Dojo projects, like Dojo or Dijit. Dojo and Dijit projects are constrained both by development resources as well as design goals, so DojoX is a natural place to provide enhanced ...
0
votes
0answers
14 views
Dojo GFX Graphics in Cells Disappear when Grid Sorts
I am implementing a Dojo (1.8) Grid. In the layout of the grid Structure I defined the following formatter:
formatter: function (value, index, properties) {
return "<div class='refNode' ...
0
votes
0answers
60 views
Is there an easy way to animate paths in dojo
I'm trying to animate a graph consisting of paths. If a shape is clicked it should move from one position to another position. The dojo way seems to be 'shape.connect("onclick",' and than a function ...
0
votes
0answers
21 views
Get all properties of a shape dojo gfx
I want to get the properties that are available to a dojo gfx shape object hhow can i achieve it.i've also added a few custom properties by using lang.mixin, Stuck with retrieving those properties.
0
votes
1answer
90 views
Get shape object from event listener
The usual procedure to somehow manipulate shapes after some event has happened is well and understood:
var circle = group.createCircle({ cx: 100, cy: 300, r: 50 }).setFill("green").setStroke("pink");
...
0
votes
0answers
21 views
Reduce pixelation in dojo.gfx
I have created an image using dojox.gfx.Image. When I scale this beyond 100%, pixelation occurs. Is there a way to smoothen images in gfx?
0
votes
0answers
129 views
how to calculate Dojo SVG Text Objects width?
Assume I would create SVG Shape Text "dojox.gfx.shape.Text()" object:
var text2 = gfx.shape.Text();
text2.shape.x = 100;
text2.shape.y = 200;
text2.shape.text = "My Text";
how do I get the ...
0
votes
1answer
88 views
Dojo GFX widgets displaying float-like behaviour instead of correct positioning
I'm using Dojo GFX to do some simple drawing, but having a problem with IE 7/8 (switching browsers is not an option).
If I create a div, set up a surface and draw some rects, they draw correctly ...
0
votes
1answer
113 views
dojox gfx: event handler of shape beyond an other shape
I have a problem with event handling in dojox gfx.
Consider the following code:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
...
1
vote
0answers
291 views
Comparison of D3 and Dojo GFX
I intend to use one of D3 or Dojo GFX to create some big data visuals like TreeMap, Wave-forms etc. The great thing about D3 is that many of these visualizations are already available as example ...
0
votes
2answers
361 views
export dojo chart to pdf or some other vector format
I need help with exporting dojo charts to pdf. How could i export dojo chart like this one to pdf or some other vector formats? i tried to use this but i can't make it work. Any vector format (ie. ...
0
votes
3answers
369 views
Coffee script : using “constructed” string to call a method
I'm trying to call a method on a class instance in Coffee script by using a string , made from a variable number of user's input fields . Let's say we have a "surface" instance , on which we should ...
1
vote
1answer
161 views
Context-menu actions on Dojo Charts
I'd like to implement a context menu over some of plot elements in a Dojo Chart. Unfortunately, out of the box Dojo Chart supports only three events: "click", "mouseover", and "mouseout". I am not ...
2
votes
0answers
250 views
add text to dojo chart (in this case scatter chart)
I want to add custom text to my (scatter) chart. I could netiher find an example nor any other appropriate dojo function for that.
By now I have a tooltip for each point of my scatter chart, but I'd ...
2
votes
1answer
1k views
export/convert chart from dojo charting to image
can anyone tell me if it is possible to convert a dojo charting object into an îmage file?
I need this as I want to export an Excel file from a webpage containing some data and the representing chart.
...
0
votes
0answers
413 views
Dojo (gfx) doesn't work correctly in Chrome using svg
When using dojox gfx (svg) in chrome, if you draw a shape (in my case a circle), the circle isn't seen until you resize the window. This behavior is very odd. However, if I put this drawing in the ...
0
votes
1answer
1k views
dojox.drawing.Drawing - custom tool to create rectangle with rounded corners
I'm working with dojox.drawing.Drawing to create a simple diagramming tool. I have created a custom tool to draw rounded rectangle by extending dojox.drawing.tools.Rect as shown below -
...
3
votes
2answers
1k views
RaphaëlJS, dojo.gfx, JSXgraph comparison
I'm going to build a simple math graph for a browser application. Therefore all the JS-Vector Libraries might work out well. But I want to know about any experiences you collected using those. For me ...
1
vote
1answer
549 views
dojox.gfx and shape filters
I've been successfully using dojox.gfx with SVG renderer to render my graphics in a browser-independent way.
I know that on of the main reasons why SVG-style filters have not been implemented in ...
1
vote
1answer
2k views
Dojo 1.4 - IE 8 dojox.charting label not shown -> dojox.gfx
I have a problem concerning dojox.charting, after updating to the new version of dojo IE 8 doesn't show the labels of my charts anymore. Seems to be a dojox.gfx text problem.
See with IE8:
...
0
votes
1answer
610 views
Extending dojo.gfx.Group with default instanciated shapes
I'm attempting to create some simple UI components with dojo.gfx. I've managed to extend dojo.gfx.Group, but am out of my depth getting any of the default shapes drawn to the surface. Inspecting the ...
65
votes
1answer
2k views
dojox.gfx bounding box for Text and Group nodes
The documentation for getBoundingBox() in dojo says:
Returns a bounding box of a shape. A
text shape is a point-based object, so
it doesn't define a bounding box.
I don't get it. Any sane ...