- 재질 check 기능 수정
- 리포트 맵 부분 수정
This commit is contained in:
@@ -20,7 +20,7 @@ namespace friction
|
||||
DataHandler m_DataHandler = null;
|
||||
|
||||
string m_CurSpring = "";
|
||||
List<string> m_CheckedTable = null;
|
||||
List<string> m_UncheckedTable = null;
|
||||
bool m_bShowAlert = false;
|
||||
|
||||
Config.RANGE m_TempRange = Config.TEMP_ALL;
|
||||
@@ -102,8 +102,8 @@ namespace friction
|
||||
public void UpdateGraph()
|
||||
{
|
||||
string strSpring = m_DataHandler.GetCurSpring();
|
||||
List<string> checkedTable = Config.GetInstance().GetTableChecked();
|
||||
if (strSpring == m_CurSpring && checkedTable == m_CheckedTable)
|
||||
List<string> uncheckedTable = Config.GetInstance().GetTableUnchecked();
|
||||
if (strSpring == m_CurSpring && uncheckedTable == m_UncheckedTable)
|
||||
return;
|
||||
|
||||
lbSpring.Text = "Material Spring: " + strSpring;
|
||||
@@ -120,7 +120,7 @@ namespace friction
|
||||
|
||||
foreach(var data in graphData)
|
||||
{
|
||||
if (checkedTable.Contains(data.m_strTable) == false)
|
||||
if (uncheckedTable.Contains(data.m_strTable) == true)
|
||||
continue;
|
||||
|
||||
chart.Series["SeriesMax"].Points.AddXY(data.m_strTable, data.m_fMax);
|
||||
|
||||
Reference in New Issue
Block a user