How to draw gridlines on minor ticks of chart?
hi guys,
i want draw gridlines on minor ticks of column chart .
drawing gridlines on ticks of column chart possible using gridlines , assigning background elements.
is there same minor tick?
thanks in advance!
you can set length of minorticks in verticalaxisrenderers.
for example, if verticalaxis contains linearaxis called "countaxis", set length this.
<mx:verticalaxisrenderers> <mx:axisrenderer axis="{countaxis}" minortickplacement="inside" minortickstroke="{s1}" minorticklength="100" /> </mx:verticalaxisrenderers>
where s1 stroke declaration.
<fx:declarations> <mx:solidcolorstroke id="s1" color="0x000000" weight="1" joints="bevel" caps="square"/> </fx:declarations>
the issue determine minorticklength is, because can't width of chart , set width, because line long.
you can use columnseries width value set minorticklength , make wide chart.
message edited by: deanloganbh - can use columnseries.width
More discussions in Flex (Read Only)
adobe
Comments
Post a Comment