Como posso configurar o gráfico abaixo para que na legenda apareça o cod_Destino?
SELECT tb_Finan_Lancamentos.data_Pagto,tb_Finan_Lancamentos.cod_Destino,Sum(tb_Finan_Lancamentos.debito) AS DEBITO
FROM tb_Finan_Lancamentos
WHERE (((tb_Finan_Lancamentos.data_Pagto)>=Date())) AND tb_Finan_Lancamentos.cod_Plano_Contas<19
GROUP BY tb_Finan_Lancamentos.data_Pagto,tb_Finan_Lancamentos.cod_Destino;
<asp:Chart ID="Chart5" runat="server" BackColor="Silver"
DataSourceID="AccessDataSource2" Height="356px" Width="615px"
style="margin-top: 2px" BorderlineColor="DimGray"
BorderlineDashStyle="Solid">
<Series>
<asp:Series ChartArea="ChartArea1" Color="LightSalmon"
CustomProperties="DrawingStyle=Cylinder" IsValueShownAsLabel="True"
IsXValueIndexed="True" Label="#VAL{C}" Name="Series1" XValueMember="data_Pagto"
YValueMembers="DEBITO" Legend="Legend1">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea1">
<AxisY>
<MajorGrid LineColor="DimGray" LineDashStyle="Dash" />
</AxisY>
<AxisX Interval="1">
<MajorGrid LineWidth="0" />
</AxisX>
</asp:ChartArea>
</ChartAreas>
<Legends>
<asp:Legend Name="Legend1">
</asp:Legend>
</Legends>
<Titles>
<asp:Title Font="Microsoft Sans Serif, 12pt, style=Bold" Name="Title1"
Text="CONTAS A PAGAR PRESENTES E FUTURAS">
</asp:Title>
</Titles>
</asp:Chart>