Пример #1
0
        //速度修正分布图
        private void button5_Click(object sender, EventArgs e)
        {
            ChartPanel cp = new ChartPanel(extSpeedPoints, "性格加速度的百分比(W)", "百分比", false, false);

            cp.Show();
        }
Пример #2
0
        //速度种族权重分布图
        private void button3_Click(object sender, EventArgs e)
        {
            ChartPanel cp = new ChartPanel(racialSpeedWeightedPoints, "速度种族统计(W)", "权重", false, false);

            cp.Show();
        }
Пример #3
0
        //速度种族权重累加分布图
        private void button4_Click(object sender, EventArgs e)
        {
            ChartPanel cp = new ChartPanel(racialSpeedWeightedAccumulatedPoints, "<=某速度种族的百分比(W)", "百分比", true, false);

            cp.Show();
        }
Пример #4
0
        //速度种族分布图
        private void button2_Click(object sender, EventArgs e)
        {
            ChartPanel cp = new ChartPanel(racialSpeedPoints, label15.Text, "精灵数", false, true);

            cp.Show();
        }