示例#1
0
		public Bubble ()
		{
			SFChart chart 		= new SFChart ();
			chart.PrimaryAxis 	= new SFCategoryAxis (){ PlotOffset = 30 };
			chart.SecondaryAxis = new SFNumericalAxis ();

			ChartBubbleDataSource dataModel = new ChartBubbleDataSource ();
			chart.DataSource 				= dataModel as SFChartDataSource;
			this.control = chart;
		}
示例#2
0
        public Bubble()
        {
            SFChart chart = new SFChart();

            chart.PrimaryAxis = new SFCategoryAxis()
            {
                PlotOffset = 30
            };
            chart.SecondaryAxis = new SFNumericalAxis();

            ChartBubbleDataSource dataModel = new ChartBubbleDataSource();

            chart.DataSource = dataModel as SFChartDataSource;
            this.control     = chart;
        }