/** SpagoBI, the Open Source Business Intelligence suite Copyright (C) 2012 Engineering Ingegneria Informatica S.p.A. - SpagoBI Competency Center This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. **/ package it.eng.spagobi.studio.extchart.utils; public class ExtChartConstants { public static final String EXT_CHART_TYPE_AREA="area"; public static final String EXT_CHART_TYPE_BAR_AND_LINE="barAndLine"; public static final String EXT_CHART_TYPE_PIE="pie"; public static final String EXT_CHART_TYPE_GAUGE="gauge"; public static final String EXT_CHART_TYPE_SCATTER="scatter"; public static final String EXT_CHART_TYPE_RADAR="radar"; public static final String AXE_TYPE_NUMERIC="Numeric"; public static final String AXE_TYPE_CATEGORY="Category"; public static final String LEFT_POSITION= "left"; public static final String RIGHT_POSITION= "right"; public static final String BOTTOM_POSITION= "bottom"; }