I'm new to dojo charting. I'm using dojo version 1.6.
I need to create 2D chart with custom x axis labels.
For that I have written below code
<div dojoType="dojox.charting.widget.Chart2D" id="chart1" style="width: 300px; height: 300px;"
theme="dojox.charting.themes.MiamiNice">
<div class="axis" name="x" font="italic normal normal 8pt Tahoma" fixUpper="major" > <!-- --> </div>
<div class="axis" name="y" vertical="true" fixUpper="major" includeZero="true" font="italic normal normal 8pt Tahoma"><!-- --></div>
<div class="plot" name="default" type="Columns" markers="true" gap="4"><!-- --></div>
<div class="action" type="Tooltip"><!-- --></div>
<div class="series" name="Run A" data="10, 20, 30, 40, 50, 60, 70"><!-- --></div>
<div class="action" type="Highlight"><!-- --></div>
<div class="action" type="Shake" shiftX="1" shiftY="1"><!-- --></div>
</div>
which is working very fine.
Now issue is I don't know how to give customise axis labels in declarative way. I searched on net regarding this, but no luck.
Please help!