为什么我的chart控件曲线显示只有中间一条竖直线?横纵坐标该怎么赋值呢?刚接触求大神指教

问题描述

为什么我的chart控件曲线显示只有中间一条竖直线?横纵坐标该怎么赋值呢?刚接触求大神指教

string[] time = new string[ds.Tables[0].Rows.Count];
string[] index1 = new string[ds.Tables[0].Rows.Count];
string[] index2 = new string[ds.Tables[0].Rows.Count];
string[] index3 = new string[ds.Tables[0].Rows.Count];
string[] index4 = new string[ds.Tables[0].Rows.Count];
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
time[i] = ds.Tables[0].Rows[i][0].ToString();
index1[i] = ds.Tables[0].Rows[i][1].ToString();
index2[i] = ds.Tables[0].Rows[i][2].ToString();
index3[i] = ds.Tables[0].Rows[i][3].ToString();
index4[i] = ds.Tables[0].Rows[i][4].ToString();
}
string strXdata = string.Empty;
foreach (string strData in time)
{
strXdata += strData + "t";
}
string strYdata1 = string.Empty;
string strYdata2 = string.Empty;
string strYdata3 = string.Empty;
string strYdata4 = string.Empty;
foreach (string strValue in index1)
{
strYdata1 += strValue + "t";
}
foreach (string strValue in index2)
{
strYdata2 += strValue + "t";
}
foreach (string strValue in index3)
{
strYdata3 += strValue + "t";
}
foreach (string strValue in index4)
{
strYdata4 += strValue + "t";
}
#endregion
chart1.ChartAreas["ChartArea1"].AxisX.Minimum = 0;
chart1.ChartAreas["ChartArea1"].AxisX.Maximum = 20;
chart1.Series["Index1"].Points.AddXY(strXdata, strYdata1);
chart2.Series["Index2"].Points.AddXY(strXdata, strYdata2);
chart3.Series["Index3"].Points.AddXY(strXdata, strYdata3);
chart4.Series["Index4"].Points.AddXY(strXdata, strYdata4);

解决方案

http://blog.csdn.net/chentaihan/article/details/5996022

时间: 2024-11-01 14:23:04

为什么我的chart控件曲线显示只有中间一条竖直线?横纵坐标该怎么赋值呢?刚接触求大神指教的相关文章

vs2010的gridview模板列加上了fileupload控件。选择word文档等上传到数据库,具体代码怎么写,求大神指教!!!谢谢!!!

问题描述 解决方案 本帖最后由 lailai333 于 2015-04-21 16:05:20 编辑

c#-C#做上位机时自定义了一个控件,控件对↑键做出反应,发现方向键不好使,按键事件进不去,求助大神!

问题描述 C#做上位机时自定义了一个控件,控件对↑键做出反应,发现方向键不好使,按键事件进不去,求助大神! 控件主要是想做一个显示速度的条,当按↑时格子文本框变色 using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System

页面显示-为什么页面上 显示不出jsp中label 里的文字 求大神指教

问题描述 为什么页面上 显示不出jsp中label 里的文字 求大神指教 为什么页面上 显示不出jsp中label 里的文字 求大神指教 解决方案 你要显示什么东西?把代码贴出来 解决方案二: 你这是表格还是div的?如果是表格的话应该就没有这问题吧.div的话可能被覆盖了.div的话可以这样试试: 密码 相关文章 java web-.jsp页面中如何把文字写在图片上想要的位置? jsp-在一个JSP页面显示显示两张表的数据,求大神求好心淫 帮帮我~~~~~~ java web-求大神指教关于J

真机调试程序直接退出-Xcode真机调试时程序直接退出,显示运行错误,没有崩溃点。是什么原因?求大神指教???

问题描述 Xcode真机调试时程序直接退出,显示运行错误,没有崩溃点.是什么原因?求大神指教??? 解决方案 http://blog.csdn.net/smking/article/details/42879649 解决方案二: 你看看appdelate启动时候加一些断点等 还有最好clean build run来启动模拟器试试

arm-基于lpc2114做sht11在lcd1602显示代码调试驱执行不了,求大神指教

问题描述 基于lpc2114做sht11在lcd1602显示代码调试驱执行不了,求大神指教 /**************************************************************************** 基于LPC2114做的一个SHT11温湿度传感器在LCD1602显示 ****************************************************************************/ #include "con

jsp-我在写JSP的分也显示的时候遇到的问题,求大神指教

问题描述 我在写JSP的分也显示的时候遇到的问题,求大神指教 2015-5-5 16:49:59 org.apache.catalina.core.AprLifecycleListener init信息: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:Program File

webview-webView不能够显示网页。 Webpage not available。求大神指教

问题描述 webView不能够显示网页. Webpage not available.求大神指教 public class MainActivity extends Activity { private String url = ""http://www.hao123.com/""; private WebView webView; private ProgressDialog dialog; @Overrideprotected void onCreate(Bun

chart控件ToolTip显示DataTime类型值是只显示了日期,没有显示时间

问题描述 给位前辈大家好!我是个新手,遇到个问题希望大家帮帮忙,在此感激不尽!问题是这样的:我从数据库读取数据,填充一个DataTable的对象table,然后把table作为一个chart控件的数据源画出了折线图,现在想让鼠标移动到绘图区的曲线上后显示当前点的X,Y坐标,用的是下面这个方法:chart1->Series[0]>ToolTip="#VALX,#VALY";由于我的X坐标是一个DataTime类型数据,当鼠标移动到series[0]上时显示了X,Y值,但是X值

求大神指教C1控件

问题描述 公司做的项目大部分是C1控件为主,忙了几天,换了几种方式给C1中的queryGrid的单元格添加背景颜色,进if判断了,也可以跑起来,就是没效果,求大神赐教.下面代码麻烦看下,stringtxtname=this.cbxType.Text.Trim();stringstrsql="select*fromstand_st";DataTabledt=_dmlService.GetData(strsql);if(txtname=="生铁"){for(inti=1