|
|
|
การทำกราฟใน VB ให้มีความละเอียดมากขึน ควรทำอย่างไรคะ |
|
|
|
|
|
|
|
มีรูปไม๊ครับ
|
|
|
|
|
Date :
2016-04-21 09:49:20 |
By :
lamaka.tor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เป็นแบบในภาพนีอ่ะค่ะ มันจะมีกราฟบางแท่งที่บอกค่าไม่ชัดเจนอ่ะค่ะ
|
|
|
|
|
Date :
2016-04-21 10:17:50 |
By :
liwpatta |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไงอ่ะค่ะ ขอข้อมูลที่ชัดเจนกว่านี้หน่อยได้ไหมเอ่ย พอดีหนูไม่เก่ง มีความรู้พื้นมากๆเลยอ่ะค่ะ กำลังเริ่มต้น ช่วยแนะนำด้วยนะคะ ขอบคุณมากๆเลยค่ะ
|
|
|
|
|
Date :
2016-04-21 12:02:37 |
By :
liwpatta |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้ C# น่ะครับ แค่เพิ่ม chart1.ChartAreas[0].AxisY.Interval = ตามด้วยค่าที่ใส่ ในสเกล แกน Y ;
Code (C#)
DataTable dtChart = new DataTable();
dtChart.Columns.Add("Item", typeof(string));
dtChart.Columns.Add("Value", typeof(double));
dtChart.Rows.Add("A", 2.0);
dtChart.Rows.Add("B", 1.0);
dtChart.Rows.Add("C", 1.2);
dtChart.Rows.Add("D", 1.8);
dtChart.Rows.Add("E", 0.5);
chart1.Series[0].XValueMember = "Item";
chart1.Series[0].YValueMembers = "Value";
chart1.ChartAreas[0].AxisY.Interval = 0.2;
chart1.DataSource = dtChart;
chart1.DataBind();
|
ประวัติการแก้ไข 2016-04-21 13:24:47
|
|
|
|
Date :
2016-04-21 13:23:16 |
By :
taotechnocom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|