INTEGRATION: CWS chart17 (1.1.2); FILE ADDED

2007/11/05 14:40:56 iha 1.1.2.1: #i63857#, #i4039# more flexible placement of data point labels, best fit for pie labels
This commit is contained in:
Ivo Hinkelmann 2007-11-23 10:42:03 +00:00
parent eb96157940
commit 15e1211bbe

View file

@ -0,0 +1,68 @@
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: DataLabelPlacement.idl,v $
*
* $Revision: 1.2 $
*
* last change: $Author: ihi $ $Date: 2007-11-23 11:42:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
#ifndef __com_sun_star_chart_DataLabelPlacement_idl__
#define __com_sun_star_chart_DataLabelPlacement_idl__
//=============================================================================
module com { module sun { module star { module chart {
//=============================================================================
/** These values specify where the captions/labels of data points are displayed.
*/
published constants DataLabelPlacement
{
const long AVOID_OVERLAP = 0;
const long CENTER = 1;
const long TOP = 2;
const long TOP_LEFT = 3;
const long LEFT = 4;
const long BOTTOM_LEFT = 5;
const long BOTTOM = 6;
const long BOTTOM_RIGHT = 7;
const long RIGHT = 8;
const long TOP_RIGHT = 9;
const long INSIDE = 10;
const long OUTSIDE = 11;
const long NEAR_ORIGIN = 12;
};
//=============================================================================
}; }; }; };
#endif