- Radar Graph 추가

- Graph 클릭 이벤트 추가
This commit is contained in:
2017-06-23 01:16:23 +09:00
parent 44841453e9
commit 902c78615b
9 changed files with 319 additions and 37 deletions

View File

@@ -132,5 +132,18 @@ namespace friction
m_CurSpring = strSpring;
}
public void SelectRow(string strTable)
{
dgvAnalysis.ClearSelection();
foreach (DataGridViewRow row in dgvAnalysis.Rows)
{
if ((string)row.Cells["chTable"].Value == strTable)
{
row.Selected = true;
break;
}
}
}
}
}