/* ===========================================================
* AFreeChart : a free chart library for Android(tm) platform.
* (based on JFreeChart and JCommon)
* ===========================================================
*
* (C) Copyright 2010, by Icom Systech Co., Ltd.
* (C) Copyright 2000-2008, by Object Refinery Limited and Contributors.
*
* Project Info:
* AFreeChart: http://code.google.com/p/afreechart/
* JFreeChart: http://www.jfree.org/jfreechart/index.html
* JCommon : http://www.jfree.org/jcommon/index.html
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* [Android is a trademark of Google Inc.]
*
* -----------------
* TimeSeriesChartDemo1Activity.java
* -----------------
* (C) Copyright 2010, by Icom Systech Co., Ltd.
*
* Original Author: Niwano Masayoshi (for Icom Systech Co., Ltd);
* Contributor(s): -;
*
* Changes
* -------
* 19-Nov-2010 : Version 0.0.1 (NM);
*/
package org.afree.chart.demo.activity;
import org.afree.chart.demo.view.TimeSeriesChartDemo1View;
import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
/**
* PieChartDemo1Activity
*/
public class TimeSeriesChartDemo1Activity extends Activity {
/**
* Called when the activity is starting.
* @param savedInstanceState
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TimeSeriesChartDemo1View mView = new TimeSeriesChartDemo1View(this);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(mView);
}
}
|