views:

84

answers:

1

Hi to All,

I have a web application in which it contain a (microsoft chart chart control ) chart with X-axis as value Question & Y having multiple values as yes count, no count & unsure count in different auto color.

I want to display the characterization of each color on top. Means which color shows yes count & which shows no count & etc.

Please give me reply how to do this.

Regards, Hrishi

A: 

I believe what you're refering to is a "Legend". Here's an example of using the chart control that includes a legend. Notice the <Legends> tag within the <asp:Chart> tag

<Legends>
    <asp:Legend Name="DefaultLegend" Docking="Top" />
</Legends>
CAbbott