In this article we will discuss, to create 3 dimensional charts in asp.net. It is simple we need to set Enable3D property to true in Area3DStyle. Just see previous tutorial, copy and paste same code just here we need to add property <Area3DStyle Enable3D="True" />
Refer previous link part4
<ChartAreas>
<asp:ChartArea Name="ChartArea1">
<AxisX Title="week">
</AxisX>
<AxisY Title="visitors per day">
</AxisY>
<Area3DStyle Enable3D="True" />
</asp:ChartArea>
</ChartAreas>
Output:
Post your comments / questions
Recent Article
- How to make youtube video responsive for website?
- SOLVED-Bootstrap 3 Glyphicons are not working
- Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.
- Unable to update the EntitySet 'table' because it has DefiningQuery and no DeleteFunction element exists in the ModificationFunctionMapping
- How to save the web page’s content and save into a string variable in c#?
- The model item passed into the dictionary is of type System.Linq.OrderedEnumerable but this dictionary requires a model item of type System.Collections.Generic.IList
- How to convert http to https Godaddy?
- Event object-event.which
Related Article