Hi all
I’m trying to reproduce stackedcolumn-chart example but something is missing
this is the data
DATE_KEY = date
this is the code
<chart:serialChart id="monthlyScheduleChart" categoryField="date" marginTop="5" marginLeft="0" plotAreaBorderAlpha="0" height="340px" width="400px"> <chart:chartCursor cursorAlpha="0"/> <chart:legend align="CENTER" markerSize="9" position="BOTTOM" fontSize="10"/> <chart:valueAxes> <chart:axis axisAlpha="0.5" gridAlpha="0.07" position="LEFT" stackType="REGULAR" precision="0" title="msg://monthly-graphic.title"/> </chart:valueAxes> <chart:graphs> <chart:graph fillAlphas="1" type="COLUMN" title="msg://tab-monthly-graphic.managed" valueField="DONE" labelRotation="90"/> <chart:graph fillAlphas="1" type="COLUMN" title="msg://tab-monthly-graphic.pending" valueField="PENDING" labelRotation="90"/> </chart:graphs> <chart:categoryAxis axisColor="#DADADA" gridAlpha="0.07" startOnAxis="true"/> </chart:serialChart>
the result is
by the way, the labelRotation
is just ignored