Changeset 208 for trunk/Forms/UFormCharts.pas
- Timestamp:
- May 22, 2018, 10:10:54 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormCharts.pas
r189 r208 41 41 SDiscoveredCells = 'Discovered cells'; 42 42 SCitiesCount = 'Cities count'; 43 SWinObjectiveCells = 'Win objective cells'; 43 44 44 45 … … 79 80 else if ComboBox1.ItemIndex = 1 then NewSeries.AddXY(X, TGameTurnStat(TurnStats[X]).Units) 80 81 else if ComboBox1.ItemIndex = 2 then NewSeries.AddXY(X, TGameTurnStat(TurnStats[X]).DiscoveredCells) 81 else if ComboBox1.ItemIndex = 3 then NewSeries.AddXY(X, TGameTurnStat(TurnStats[X]).Cities); 82 else if ComboBox1.ItemIndex = 3 then NewSeries.AddXY(X, TGameTurnStat(TurnStats[X]).Cities) 83 else if ComboBox1.ItemIndex = 4 then NewSeries.AddXY(X, TGameTurnStat(TurnStats[X]).WinObjectiveCells); 82 84 end; 83 85 Chart1.AddSeries(NewSeries); … … 97 99 Items.Add(SDiscoveredCells); 98 100 Items.Add(SCitiesCount); 101 Items.Add(SWinObjectiveCells); 99 102 ItemIndex := LastIndex; 100 103 end;
Note:
See TracChangeset
for help on using the changeset viewer.