Questions tagged [dojox.charting]

dojox.charting is a sub-library of the Dojo Toolkit, which is an open source modular JavaScript library designed to ease the rapid development of cross-platform, JavaScript/Ajax-based applications and web sites. It is dual-licensed under the BSD License and the Academic Free License.

dojox.charting is a sub-libarary of the Dojo Toolkit that provides fully JavaScript based 2D and 3D charting that is very feature rich.

The documentation for the libarary is available here: http://docs.dojocampus.org/dojox/charting/

192 questions
3
votes
4 answers

Hiding a series by default in a spider plot

I have a spider plot in using the graphing library of Dojo defined like this: require([ "dojox/charting/Chart", "dojox/charting/themes/Claro", "dojox/charting/plot2d/Spider", "dojox/charting/action2d/Tooltip", …
Matt Burland
  • 44,552
  • 18
  • 99
  • 171
3
votes
2 answers

Fill colour for individual bars in Dojo Chart?

This is likely fairly simple Q (learning the ropes with Dojo). I have successfully created a bar chart in my web app. // Create Chart var chartDiv = dojo.create("div"); dijit.byId("someDiv").setContent(chartDiv); var chart1 =…
jakc
  • 1,161
  • 3
  • 15
  • 42
3
votes
1 answer

Dojo StackedColumn tooltips

When I create a StackedColumns graph in dojo, the default tooltips show the cumulative value. I would like to show the individual value (or possibly both). In my experience, when I have a series with first value: 2, and another with first value:…
Tony
  • 33
  • 5
3
votes
1 answer

Dojo Line chart from JSON with multiple series and common x-axis

I believe what I am trying to accomplish should be a fairly common task, yet I'm having difficulty getting it to work. I simply wish to create a multi-series plot from a data set containing (for each record) an ISO8601 timestamp along with multiple…
BrandonLWhite
  • 1,866
  • 1
  • 23
  • 26
2
votes
1 answer

Dojo-Charting Issue: Bar Chart (ClusteredColumns) Using Array?

Simply speaking that I have 2 values of ActualCost and BudgetCost, I made a Clustered Columns chart to display their values. Now I made two series for each of them (I want to make legends for them). In each series why I must have to use two values…
AbdulAziz
  • 5,868
  • 14
  • 56
  • 77
2
votes
1 answer

Can I create multi-line tick labels in Dojo Charts?

I have a 2D dojox.chart. I want to label tick marks on the X axis with dates that have time and date on separate lines. Is there a way to achieve that?
ReCoder
  • 88
  • 4
2
votes
1 answer

Are there any solutions for server-side rendering of Dojo Charts?

I am looking for a way to render a Dojo Chart on the server, maybe similar to a HighCharts solution (highcharts-serverside-export). Did anyone succeed in running dojox.gfx on the server side?
ReCoder
  • 88
  • 4
2
votes
1 answer

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 rather like to have a label for it. Any…
gotcha
  • 151
  • 2
  • 14
2
votes
3 answers

Fixed axes in dojo spider chart

Is there a possibility to have fixed axes for the dojo spider chart? I want every axis showing a fixed value range. Can I prevent dojo from calculating the scale? Thanks a lot!
gotcha
  • 151
  • 2
  • 14
2
votes
2 answers

How to deal with overlapping X-axis labels in DOJO chart?

I have recently starting using the dojo library, and I am currently having some formatting problems with my x-axis labels. A few of the labels have longer names, and thus there is some overlap going on. Is there some way to have the labels…
Scott Simontis
  • 748
  • 1
  • 10
  • 24
2
votes
2 answers

Updating a dynamic Dojo chart with specified x and y values

I'm building a website which requires a line graph to be updated dynamically. For this I'm using the dojo library which provides the necessary charting functions I need to achieve this, based fully on this example available on their…
Jitesh Pramodray
  • 424
  • 1
  • 7
  • 16
2
votes
1 answer

DojoToolkit: dojox.charting.DataSeries, how to connect to data refresh event?

I'm new to JavaScript and Dojo so please bear with me. I'm trying to create a Pie chart using DataSeries object, like this: var skillStore = new dojo.data.ItemFileReadStore({ url: "/data/skillhead.json" }); function formatPieChartData(store,…
Alex Tokarev
  • 4,821
  • 1
  • 20
  • 30
2
votes
3 answers

Dojox datachart live update?

As per the title, I'm really wondering how do I do live updates in datachart ?? As this site is old SitePen datachart, they were still on Dojo 1.3 with Persevere 1.0, where now Dojo had gone to 1.6 and Persevere 2.0. Google shows 1.6 ady has new…
Eric T
  • 1,026
  • 3
  • 20
  • 42
2
votes
2 answers

dojox charting: remove the padding around the chart

How can I move the padding around a dojox chart? Here is an example: var chart1 = new dojox.charting.Chart2D("simplechart", {fill:"#FFC0C0"}); chart1.addPlot("default", {type:"Columns"}); chart1.addAxis("y", {type:"Invisible",…
Justin
  • 21
  • 1
  • 3
2
votes
2 answers

How to handle long labels on y-axis in Dojo Charts?

I have long labels on y-axis in dojo bar chart. In Firefox 3.6, they are overlapping on to the bars and in IE8, they are clipped. Help me with this please. Since I am a new user, I am not allowed to post images otherwise I would have done that.
achinmay
  • 31
  • 4
1
2
3
12 13