Tagged Questions
0
votes
0answers
9 views
dojox.charting.Chart setDir does not work
I need to set dir of dojo chart to rtl (right to left) but it is not working. The chart is generated by following code:
require(["dojo/ready", "dojox/charting/Chart2D", "dojox/gfx/utils", ...
0
votes
0answers
9 views
Dojo chart won't display after addSeries
I am trying to create a chart in dojo. The issue is, as soon as I try and add any data to the chart, the chart renders blank (no errors).
Code:
var cPosition
...
0
votes
2answers
89 views
Display point values on mouseover in dojox.charting.Chart
I have two questions regarding dojo charts.
1) How can I show point values in a dojo Chart on mouse over? Below is the chart I developed using YUI library. you can see when I mouseover a point it ...
0
votes
1answer
23 views
Change dojox.charting.Chart title after render
I was wondering if there is any method from which we can set title of a Chart after it is rendered. The title can be set initially while creating the chart object, example:
var chart = new ...
0
votes
0answers
25 views
way to get the legends associated with the chart object in dojo
I want to download a chart along with its legends as a pdf file.Is there any way to get the legends associated with a chart using the chart instance in Dojo charting. I googled a lot about this, but ...
0
votes
1answer
64 views
How to remove a legend for a series from dojo chart
I have a dojo chart with a vertical line series, see. How do I remove this series from the legend so that only my 'real' series are shown in the legend?
0
votes
0answers
54 views
In Dojo, how can I drawing custom markers at data points?
I'm using Dojo for drawing my charts. I need to draw an overlay at certain points. Almost like a tooltip that’s always shows. It can be a stack of values or an icon that display above, below or next ...
0
votes
2answers
81 views
Dojo toggle selectableLegend
I am looking for a better way to toggle Dojo Legends. Unfortunately they are not straight checkboxes, so the only way I got it working was to trigger a click event on the dojo checkbox
Currently I ...
0
votes
1answer
76 views
Is it possible to select multiple markers in a dojo chart and pass their coordinates to an event?
I want to select two or more markers in a chart and perform an action using their coordinates.
Selecting the points is the main problem since I didn't find anything on this topic and I'm not sure if ...
0
votes
0answers
49 views
Resize Chart with media Query
Im new to Dojo and CSS, so this will likely be basic stuff. Been learning a lot from the dojo gurus on Stack Exchange and appreciate it a lot.
I have a div (panelContainer) that contains a Dojo ...
0
votes
1answer
216 views
Dojox tooltips don't show up on mouse over
I am getting crazy while rendering a simple line chart with dojo toolkit. Everything is fine except that tooltips don't show up on mouse over. ChartData is a list of objects having this
structure:
...
0
votes
1answer
59 views
Lbal and legend with spiderweb in dojox chart
Here is my code :
I need to make a spiderweb graph with a legend in blue here.
3 axys
<html>
<head>
<script ...
0
votes
1answer
96 views
Dojo Tooltip display always
Is it possible to make a tooltip display always in a chart?
I know that is possible to make it appears on mouse over using
new Tooltip(chart,"default");
0
votes
0answers
43 views
Dojo keeps changing color of series
My dojo theme have an array of colors
var colors = ["#73373B","#004f80","#ad7b2a","#558F7F", "#00f", "#ff0", "#0ff", "#f0f", "./common"],
Everytime I destroy and create other Series the plot ...
1
vote
1answer
403 views
Web based 3D Scatter Plot
Is there any java script library out there that lets you create a 3D scatter plot?
Preferably one that lets the user interact with it (pan, rotate, zoom, etc)
0
votes
0answers
323 views
Cannot get Dojo chart to display in Internet Explorer 8 using workarounds
I am going crazy trying to get my programmatically generated Dojo charts to appear within Internet Explorer 8. Through researching the matter, I know that the trouble is a result of a Microsoft change ...
0
votes
1answer
209 views
How can i get access to a dojox-chart?
How can i get access to a dojox-chart and fetch it as a js-object?
In a normal dijit widget it works with registry.byId("id") but this doesnt work with a dojox-chart.
I've also tried it with ...
3
votes
1answer
159 views
How do I remove the grey background for dashed lines in a dojo line chart?
I created a chart in Dojo using dashed and dotted lines.
Everything works fine except that the background of the dotted line is grey.
How do I remove the grey background of the line?
var xChart = ...
1
vote
1answer
440 views
Quirks Mode, Dojo Chart/Legend not displaying all the time, Internet Explorer
I have a page that will display ok in Firefox and IE7/IE8 Standards, but not in Quirks Mode or IE9. I need it to also display correctly Quirks. The problem is that the Dojo Chart and Legend 'images' ...
0
votes
1answer
113 views
multiple dojo pie chart
How can I add trow pie charts in the same chart? If I add two plots then the pie charts are both in the center. I need to have one on the left side and one on the right side.
I need them in one chart ...
0
votes
2answers
1k views
Dojo Chart selective labels for x-axis & grid
I need to create a dojo chart
http://codebins.com/bin/4ldqp8z/1
In the above link my chart has x-axis labels like
Current x-axis: 11:am, 12:40pm, 2:20pm & 4pm
for the same labels i have grid ...
0
votes
0answers
109 views
Creating a Dojo 2Dchart Column from JSON data
I'm trying to Create a Dojo 2Dchart from JSON data.
Here is the json :
var d = [{
"var": "value"
}, {
"success": 1
}, {
"username": "paul"
}, {
"data": [{
id: 1,
"x": ...
0
votes
0answers
215 views
How do a add a dojo chart to a dojo surface
How do a add a dojo chart (dojox.charting.Chart2D) to a dojo surface (dojox.gfx). I have looked around and only see shapes being added to surfaces.But the documentation says charts are built on ...
1
vote
1answer
532 views
Dojo candlestick chart - update series with json
I am using the Dojo toolkit to create a candlestick chart. I have a number of different series of data by year that a user will be able to click a button to select the year of data and the ...
0
votes
1answer
269 views
Is it possible to disable dojo spider chart animation?
If I convert the given html to pdf with wkhtmltopdf the chart data will not show because it is rendered when the animation is not yet complete.
Does anyone know of a way to disable the animation?
...
0
votes
1answer
338 views
Dojo chart add without changing axis scale
I am adding data to my chart like this:
electricStore.notify({ value: 0, id: ++electricCount, site: 1 });
electricStore.notify({ value: Math.random()*5, id: ++electricCount, site: 2 });
...
0
votes
1answer
182 views
Cannot create new javascript object
I am trying to use the StoreSeries with Dojo in order to create charts. However when I try to create the array by:
new StoreSeries(store, { query: { site: 1 } }, "value");
Then the javascript stops ...
0
votes
1answer
526 views
Move Plot in Column Chart (dojo)
I am trying to create a chart which has both actual data and the target for the actual data. I am trying to show the target data bars behind the real data bars and move the target data plot slightly ...
1
vote
1answer
652 views
custom x axis label and tooltip in dojo chart
My json looks like this
var jStore = {
" identifier": "cpu",
"items": [
{
"Time": "02:52",
"Used": 100,
"Idle": 0
},
{
...
2
votes
1answer
1k views
set background color in chart
I am using a theme, but i want to set background color around the chart to white or transparent or something.
I am trying this code:
var myTheme = dojox.charting.themes.PlotKit.orange;
...
5
votes
1answer
318 views
Incorrect position of tooltip only in new version of dojo 1.7
When i updated my version of dojo from 1.6 to 1.7.1 i found an issue in the position of the tolltips in ClusteredBars. Even in the Dojo Toolkit SDK 1.7.1 this occurs.
demo
...
0
votes
2answers
339 views
How to set the offset when zooming on a dojox.charting.chart?
I'm struggling with the zooming on a dojo chart.
My chart is defined in javascript like this :
var c2 = new dojox.charting.Chart("myChart");
c2.addPlot("default", {
type: ...
0
votes
1answer
391 views
Dojo charting updating axis labels on column charts
I've built a column chart using dojo 1.4.3 ( websphere portal 7 custom dojo build ) and so far i can easily update the chart's series using the updateSeries method.
Now i need to update the axis ...
1
vote
2answers
332 views
is it possible to create dojo chart without axis?
I'm using a dojo chart to display data in a bubble chart. However, I don't need the axis but if I remove the axis, it screws up the display of the data. I can fudge axis not being there by hiding ...
1
vote
4answers
149 views
Javascript based graphing / charting toolkits vs PHP based ones
I'm contemplating using http://pchart.sourceforge.net/ for our graphing / charting requirements but another developer suggested the use of a javascript/jquery based one like - http://dojotoolkit.org/
...
4
votes
1answer
1k views
change the color of grid plot -dojo
i am using this code:
chart1.addPlot("grid", {
type: "Grid",
hMinorLines: true
});
how i can change the color of the grid, and the interval between each line ?
It is possible, right?
thanks
0
votes
1answer
118 views
override the chart legend. how?
normally we made something like this, and the update have the same name.
chart1.addSeries("job", new, {
});
it is possible to override the series job, with another name, for example ...
0
votes
0answers
125 views
dojo graphs- problem in examples
i tried to copy this example to my desktop http://user.sitepen.com/~dwalsh/dojo-charting.html#piechart but when i opened the page, only the titles is showed and none chart
I use to make a copy the ...
0
votes
1answer
1k views
How do ya add a custom tooltip to Dojox charts?
Say I have this:
var chart1 = new dojox.charting.Chart2D("traffic");
chart1.addPlot("default", {type: "Columns", gap: "15"});
chart1.addAxis("x", {minorTicks: false, font: "normal ...
0
votes
1answer
239 views
Dojo charting: How do you return an error if the chart is empty?
I'm pulling information from a database and putting it into a dojo chart. I'm trying to figure out how to return a 'no data message' with the way this chart is working:
var chart1 = new ...
0
votes
0answers
557 views
Dojo Pie Chart fails after 3rd Ajax updateSeries call
I am performing and update a dojo Pie chart using the updateSeries method. The update is called after an ajax call in order to get a new dataset.
Here is the Javascript:
var eventByReasonsData = ...
0
votes
1answer
1k views
AddSeries parameters
I try hard to get some functional charts with dojo...
I want to create a stacked area chart with 3 lines. For the "bas", "moy" and "haut" as you see in the JSON data.
var jStore = ...
0
votes
1answer
1k views
Display months in xAxis with Dojo
I have this data :
{ "identifier": "id", "idAttribute":"id", "label": "date",
"items": [
{ "id":1,
"name":"index",
"point":[{"id":1,"num":17, ...
0
votes
2answers
1k views
Mixed Charting DATA sources in the same CHART
I'm new in DOJO and I post here for the first time.
I have a problem to create several lines on the same chart.
I've done a simple test to simulate data and it works
...
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
366 views
Dojox charting legend image rotation
Is there a way to rotate an image symbol in the legend widget??
I'm using a few vertical lines in my graph to show the location
of a leak on a chart. The legend shows these lines as horizontal
which ...
0
votes
1answer
429 views
Dojox legend color for markers incorrect
I have a dojox chart where the legend created for the chart never
has the correct color for markers. The legend color for the marker
should match what's on the chart. It's always seems to use a ...
0
votes
1answer
452 views
Providing links and markers [label] in each bar in a bar chart
I have recently started working on dojo. I am facing problems in the following cases.
How can i provide a unique link (href) in each bar in the bar chart? When a user clicks on a bar or label, he ...

