VS 2005 MS Chart Control For .Net Framework 3.5?
May 11, 2009I want to know how to show hide/show series of this chart control through Datagridview Checkbox using vb.net
View 9 RepliesI want to know how to show hide/show series of this chart control through Datagridview Checkbox using vb.net
View 9 RepliesCan any one tell me how the chart control is used in .net framework 2.0 and it will be helpfull if you give any code
View 2 RepliesI've just started checking out Chart controls for VS .NET. I've downloaded and installed MS Chart Controls for .NET Framework 3.5 and ZedGraph.I'm trying to decide which would be my best choice. In VB6 I used RMCharts and liked it alot.
ZedGraph, like VS2005, is made to work with .NET Framework 2.0 and seems user friendly. Alot of my clients are still using XP machines without .Net Framework 3.5.
someone tell me where the chart control is in vs2005 .net framework is 2.0
View 2 RepliesI have X and Y data columns coming from database.
I have to show scatter plot chart with Linear, Exponential, Log, power using asp.net chart control.
i wish to create line chart, pie chart and bar chart using vb.net of visual studio 2005.Second question is i wish to copy a few data into datagridview from microsoft office tools such as access or excel using shortcut key 'ctrl+C' and 'ctrl+V'.code to do the 2 functions above without installing additional tools?
View 5 RepliesI've got a datatable with two columns "Status" (string) and "Total" (integer).
Status Total
Success 34
Missing 2
Failed 10
I want to databind this into a pie chart with each Status per slice but I'm not sure what method of data binder is required?
I have a chart in Excel that I'd like to use a subtitle on. There is no SubTitle Property on the chart object, so I looked in the Excel User interface and found that you can only create a sub-title by using a text box. The text box looks like its associated with the chart, not the worksheet, so how would I access that text box from code?
View 1 RepliesI can't figure out how to plot anything on this chart...finally got it to actually display a pie chart, now I'm trying to somehow bind a data source to it and from there, select the series data..I have added the database to the project as a data source but I don't know how to bind it to the pie chart. some other info: this db has 100's of tables and the program I'm working on is going to be a "status monitor" of sorts that will contain about 6-8 different types of charts all plotting different info for me in chart form.I want to bind this one data source to all the charts and just have them display different information (based on the sql query perhaps)
View 9 RepliesI am doing Windows applications in VB.NET 2005. I want to use chart in my project. I already asked this question in this site. But viewers said the solution to use "MSChartControl" (but this is for Visual Studio 2008.).
View 4 RepliesI am creating a bar-chart at runtime using the code below. I would like to print the result of the chart on a A4 paper (Landscape). And add header and footer to it. Do i need to save it as a graphic first?How can i print this?
Private Sub PictureBox1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles PictureBox1.Paint
Dim canvas As Graphics = e.Graphics
Dim heighestamount As Integer
[code]....
I am looking at trying to make a chart from my data I am retriving form a 3rd part textfile datafile
I am reading on report viewer, but so far everything i see references using an exisitng database, my database will be created at run time
I create datatables uisng OleDb connection and bindingsources to comboboxes and textboxes for display of data
I just need a simple x/y scattered chart/graph
where can I get a bar chart control for visual basic.net and windows 7. Mschart.ocx doesn't work.
View 2 RepliesHow use MS chart control with VS 2010?What name reference link I need add to project for use MS chart.I don't see MS chart control in "Toolbox" in VS 2010, what I need do for I will see MS chart control in "Toolbox".If any body can send me link to simple sample "use MS chart in VS 2010".
View 1 RepliesI can draw a graph with MS Chart Control 6.0 in VB.net. But I can not save it.I write the code:
AxMSchart1.copy() 'to copy the chart into clipboard
But whenever I use one of the flowwing commands: clipboard.GetData, Clipboard.GetDataObject,...I get the error: Exception of type 'System.ExecutionEngineException' was thrown?how to save the graph?
So in this program that I've made, I have 5 tabs. One of them uses this chart control for .NET ver 3.5 that I downloaded from the Microsoft website. The issue is, though, that when I start the program, everything is fine until I click on the tab with the 3 charts on it. The tab freezes a little bit, and it takes a few seconds to load the charts. After this initial hiccup everything is fine, but I've tested this on three computers now and it happens to all of them. Anyone know what I can do to make these charts load faster or smoother? This is quite a roadblock.because otherwise I'd be done I've been working on this project in VB.NET for the past 3 weeks and it's my first time using the language. So far every single one of my questions on here has been answered and all within a day or two
View 5 RepliesIn the com component list there is no Microsoft Char Control selection. How can I find it.
View 1 RepliesI am using the chart control that comes with Visual Studio i have made a a bar chart with it what i am wondering is there any way to be able to click one of the bars and be able to work with that value Pic below:
Attached File(s)
barChartPic.bmp (941.95K)
Number of downloads: 10
Is there a book for learning the microsoft windows form chart control?
View 3 RepliesI have asp.net chart intervel issue. I am feed data to chart like below
X1 Y1 X2 Y2
100 907 500 2395
100 745 500 2343
100 760 500 2403
Each row is a series in the chart.
In am iterating each row in code and making new serie and adding to chart
series1.Points.AddXY(dt.Rows(i)(0).ToString, dt.Rows(i)(1).ToString)
series1.Points.AddXY(dt.Rows(i)(2).ToString, dt.Rows(i)(3).ToString)
Chart is coming like it is fine. Now I want make interval like 100,200,300,400, 500 (500 is max of the graph). I tried Chart1.ChartAreas(0).AxisX.Interval = 100, It did not worked out.
I am trying to get AxisX interval for MS Chart Control in code behind. But when i try to retrieve the value, it returns zero even though it has a default value.
'Doesn't return the correct value, only returns 0
Dim XInterval As Double = mainChart.ChartAreas(0).AxisX.Interval
[code]....
I have data in data table like below.
I am trying to make graph like below using asp.net chart control (made graph in excel with some test data)
points are X and Y values. lines are linear, exponential, logarithmic and power values.
So how can I make this chart in asp.net (vb.net or c#)?
My published app fails to install because the "assembly is missing" for the Chart Control.
View 3 RepliesI'm trying to present results on an aspx web page where a store procedure parameter is defined by a dropdown list control on the page. I have followed this guide from Microsoft and have my resultset presented in a DataGrid view. But I cannot seem to adapt it to present the resultset in a chart.
As you can see from my VB code below, I thought it would simply be a case of adapting the GridView databind to a Chart. I have tried various other options, and have successfully generated my data in a chart using a hard-coded parameter in an SQL statement on the ASP page. But when it comes to using the control, I get an empty chart.
Below is what I have so far.
Imports System.Data.SqlClient
Public Class Report
Inherits System.Web.UI.Page
[Code].....
I'm trying to plot a graph in VB.Net, using MS Chart Control. I'm receiving streaming data, distance vs X data (Sine wave) and Z data (Cosine wave) every 1 msec. maximum data points varies from 2000 to 5000. I would like to plot this streaming data on a graph, distance on x-axis and two series X data and Z data on Y axix.
View 3 RepliesI amincluding the code I am using below. My problem is syntax. I can't any documentation on the MS Chart control. Th code below I found in various code examples, but I can't seem to find the remaining necessary examples fro labeling the X and Y axis. I have 12 monthly values, Jan-Dec that I am trying to plot. I can the graph to print, but don't know how to lable it. Why does this have to be so hard to discover?
[Code]...
I'd like to use it to do some graphing. I'm trying to make MS Chart Control work, but all tutorials/code snippets that I've seen require ChartName.ChartData to populate the chart. When I enter this, I get the blue squiggly line of death:
Private Sub Form1_Load()
Dim array(1, 1) As Object
array(0, 0) =
[code]....
why this is happening? When I hold the mouse over Chart1.ChartData, I get the message "ChartData is not a member of System.Windows.Forms.DataVisualization.Charting.Chart".
Does anyone of working example of Microsoft StackedArea100 Chart Control?
View 3 RepliesHow can i make a drag and drop teeth chart in vb2005? i really need help, please just tell me how to go about it? i just need a simple dental teeth chart.
View 1 RepliesI have a chart control and datagrid in the same page.
I want in a single button click, to populate them both using a datareader.
I have this code:
dg.datasource=reader
dg.databind()
Chart1.Series("series1").Points.DataBind(
[Code].....
The problem is that only one of them is populated (the first databind in the code) and the other databind isn't working.