- 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

@@ -53,7 +53,18 @@ namespace friction
WritePrivateProfileString("Option", "recent", OPTION.GetRecentAll(), m_strPath);
}
public struct COLUMN_NAME
{
public static string SPRING = "Material spring";
public static string TABLE = "material 2 table";
public static string RPN = "Risk priority number";
public static string FORCE = "normal force";
public static string TEMP = "Temperature";
public static string HUMIDITY = "Relative humidity";
public static string VELOCITY = "Relative velocity";
}
public static class OPTION
{
@@ -79,9 +90,9 @@ namespace friction
{
public enum RISK
{
NO,
POTENTIAL,
HIGH
NO=3,
POTENTIAL=5,
HIGH=10
}
public enum DEPENDANCY