コード例 #1
0
ファイル: ChartBuilder.cs プロジェクト: mirannda/FlugleCharts
        public static Bar Bar(BarType type, BarGroupType grouping)
        {
            string typeCode = type.GetCode();
            string group    = grouping.GetCode();

            return(new Bar(typeCode, group));
        }
コード例 #2
0
ファイル: ChartBuilder.cs プロジェクト: mirannda/FlugleCharts
        public static Bar Bar(BarType type)
        {
            string typeCode = type.GetCode();

            return(new Bar(typeCode, "g"));
        }