Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 27th, 2012  |  syntax: None  |  size: 0.67 KB  |  hits: 23  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. asp.net Radar chart. Show lines instead of filled area
  2. <asp:Chart ID="Chart1" runat="server" Palette="Bright">
  3. <Series>
  4.     <asp:Series Name="Series1" ChartType="Radar">
  5.     </asp:Series>
  6.     <asp:Series Name="Series2" ChartType="Radar">
  7.     </asp:Series>
  8.     <asp:Series Name="Series3" ChartType="Radar">
  9.     </asp:Series>
  10.     <asp:Series Name="Series4" ChartType="Radar">
  11.     </asp:Series>
  12. </Series>
  13. <ChartAreas>
  14.     <asp:ChartArea Name="ChartArea1" BackColor="White" BorderColor="Transparent" BorderWidth="0">
  15.         <AxisY>
  16.             <MajorGrid LineColor="lightgray" />
  17.         </AxisY>
  18.     </asp:ChartArea>
  19. </ChartAreas>
  20.        
  21. Chart1.Series[0]["RadarDrawingStyle"] = "Line";