Support for chart drawing in Chart control DEVEXPRESS - devexpress

VB.Net
I want to be like the picture attached
Picture:

Related

How can i add devexpress vertical Panes chart in my project?

I'm beginner in asp.net and i want use devexpress web chart control in my project,in this link:
THIS
but up link dont write any code or tutorial to how to use that chart in project,how can I write simple code to use up chart in my project?
You can add a ChartControl to your ASP.NET project as any other controls. Just add a WebForm to your project and drag-drop a WebChartControl from Toolbox onto the WebForm. To add panes to a chart, add several panes to your Diagram:
<dxcharts:XYDiagram>
...
<Panes>
<dxcharts:XYDiagramPane PaneID="0" Name="Pane 1"></dxcharts:XYDiagramPane>
<dxcharts:XYDiagramPane PaneID="1" Weight="1.5" Name="Pane 2"></dxcharts:XYDiagramPane>
</Panes>
</dxcharts:XYDiagram>
See the Adding Panes help topic.
In addition, check out the ASPChartsChartElementsVerticalPanes video that illustrates how to create a chart with several panes from scratch.

how to create a cylinder chart asp.net 4.0

I m drawing a cylinder chart in excel with below data,
Is there any way to draw the same with .net chart control. please suggest?
can we convert excel to some format to produce chart control code?
how to bind data with such controls? thanks!
In order to display a 3D chart by setting property values at design time you need to work with the ChartArea property of the chart control.
The ChartArea properties window can be displayed by clicking ChartArea collection in Chart1 properties. In the ChartArea properties window you need to set the Enable3D property to True as shown in the next figure
Referenced article: http://dotnetslackers.com/articles/aspnet/Microsoft-Chart-with-ASP-NET-35-Part2.aspx

I want my telerik pie chart drilled down to telerik stacked bar chart

We are using telerik charting demo version.
we want to know if we can drill down from telerik pie chart to telerik stacked bar chart or not.
We don't want drill down to a specific portion of the pie. But we have scenarios where we have 5 portions of data for a group in pie chart. When we click on the pie chart, it will drill us down to each group members' stacked bar where each bar has same 5 portion of data belonging to them.
Is it possible with telerik charts ?
I am using asp.net web application.
Need a suggestion: which are good chart controls ? I searched lot on the internet and am confused. I want controls which don't have limitations. I don't want to not be able to drill down on pie or something like that.
Help is appreciated.
thanks,
Drilldown is achieved by initiating a (partial) postback so you can modify the control on the server: http://demos.telerik.com/aspnet-ajax/htmlchart/examples/drilldownchart/defaultcs.aspx.
Instead of changing field names, you can simply hide the current chart and show another one with the desired properties and series.

Adding tabular values along with the legends in asp.net chart controls

I am stuck in preparing some chart control in the format we required. I have added the asp chart control in to my asp.net application, Where the X and Y values in the chart are displaying correctly, when i pass some values. Right now I want to display the legends along with the unit values in the chart. The following figure is my required format
I have searched every where in the net and also tried a lot, but still I dint find the way how can i display the chart like that. For an alternative I added one grid control at the bottom of chart, but its not appearing as my requirement. It is coming differently like below.
So, can any one give me an advice of how can i achieve my goal of displaying the chart like in my required format.
Thank you for not responding to my question, so any how I have done it my self by using datalist at the bottom of the chart control. I added one datalist control to the table in which chart control is present and binded the required data table to the datalist and also binded images to the datalist control at runtime from a datatable. Inorder to display the data present in datalist, i used RepearDirection property of the datalist and set it to "Horizontal". Finally my report displayed like my required format. And for the chart area, i added two types of series for the same X and Y points inorder to display Line chart as I required, one series is bubble and another is line.
So, finally my graph displayed as below.

How to create clickable chart in ASP.NET

How to create a chart that allows the user to click on the specific chart area,
when user click on the specific chart are I want to fire some event on that,
like I want to display more detailed chart on the item user have clicked.
I have used Webchart, MicrosoftChart but both provides chart as image so no clickable area there any alternate?
The microsoft chart control definitely does support click-through. Check this article out at 4guysfromrolla.

Resources