/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_chart_Diagram_idl__ #define __com_sun_star_chart_Diagram_idl__ #ifndef __com_sun_star_chart_XDiagram_idl__ #include #endif #ifndef __com_sun_star_chart_XAxisSupplier_idl__ #include #endif #ifndef __com_sun_star_chart_XDiagramPositioning_idl__ #include #endif #ifndef __com_sun_star_chart_XSecondAxisTitleSupplier_idl__ #include #endif #ifndef __com_sun_star_beans_XPropertySet_idl__ #include #endif #ifndef __com_sun_star_chart_ChartDataRowSource_idl__ #include #endif #ifndef _com_sun_star_xml_UserDefinedAttributeSupplier_idl_ #include #endif //============================================================================= module com { module sun { module star { module chart { //============================================================================= /** the base service for the diagram of the chart document.

The diagram is the object that contains the actual plot.

Different Diagram Types, e.g., PieDiagram or LineDiagram, can be instantiated by the XMultiServiceFactory of the XChartDocument.

*/ published service Diagram { interface com::sun::star::chart::XDiagram; /** Provides easier access to the differnet axes and their sub elements. @since OOo 3.4 */ [optional] interface com::sun::star::chart::XAxisSupplier; /** Provides access to the titles of the secondary X axis and Y axis. @since OOo 3.0 */ [optional] interface com::sun::star::chart::XSecondAxisTitleSupplier; /** @since OOo 3.3 */ [optional] interface com::sun::star::chart::XDiagramPositioning; //------------------------------------------------------------------------- /** If this property is the position is calculated by the application automatically. Setting this property to false will have no effect. Instead use the interface XShape to set a concrete position (note XDiagram is derived from XShape). */ [optional, property] boolean AutomaticPosition; //------------------------------------------------------------------------- /** If this property is the size is calculated by the application automatically. Setting this property to false will have no effect. Instead use the interface XShape to set a concrete size (note XDiagram is derived from XShape). */ [optional, property] boolean AutomaticSize; //------------------------------------------------------------------------- interface com::sun::star::beans::XPropertySet; //------------------------------------------------------------------------- /** If a Diagram may be stored as XML file, this service should be supported in order to preserve unparsed XML attributes. @since OOo 1.1.2 */ [optional] service com::sun::star::xml::UserDefinedAttributeSupplier; //------------------------------------------------------------------------- /** determines if the data for a data row is contained in the columns or in the rows of the data array. @see ChartDataRowSource @see ChartDataArray */ [property] com::sun::star::chart::ChartDataRowSource DataRowSource; //------------------------------------------------------------------------- /** specifies how the caption of data points is displayed. @see ChartDataCaption */ [property] long DataCaption; //------------------------------------------------------------------------- /** specifies how empty or invalid cells in the provided data should be handled when displayed @see MissingValueTreatment */ [optional, property] long MissingValueTreatment; }; //============================================================================= }; }; }; }; #endif