#region MigraDoc - Creating Documents on the Fly // // Authors: // Stefan Lange // Klaus Potzesny // David Stephensen // // Copyright (c) 2001-2017 empira Software GmbH, Cologne Area (Germany) // // http://www.pdfsharp.com // http://www.migradoc.com // http://sourceforge.net/projects/pdfsharp // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. #endregion using MigraDoc.DocumentObjectModel.publics; namespace MigraDoc.DocumentObjectModel.Shapes.Charts { /// /// Represents a series of data on the chart. /// public class Series : ChartObject { /// /// Initializes a new instance of the Series class. /// public Series() { } #region Methods /// /// Creates a deep copy of this object. /// public new Series Clone() { return (Series)DeepCopy(); } /// /// Implements the deep copy of the object. /// protected override object DeepCopy() { Series series = (Series)base.DeepCopy(); if (series._seriesElements != null) { series._seriesElements = series._seriesElements.Clone(); series._seriesElements._parent = series; } if (series._lineFormat != null) { series._lineFormat = series._lineFormat.Clone(); series._lineFormat._parent = series; } if (series._fillFormat != null) { series._fillFormat = series._fillFormat.Clone(); series._fillFormat._parent = series; } if (series._dataLabel != null) { series._dataLabel = series._dataLabel.Clone(); series._dataLabel._parent = series; } return series; } /// /// Adds a blank to the series. /// public void AddBlank() { Elements.AddBlank(); } /// /// Adds a real value to the series. /// public Point Add(double value) { return Elements.Add(value); } /// /// Adds an array of real values to the series. /// public void Add(params double[] values) { Elements.Add(values); } #endregion #region Properties /// /// The actual value container of the series. /// public SeriesElements Elements { get { return _seriesElements ?? (_seriesElements = new SeriesElements(this)); } set { SetParent(value); _seriesElements = value; } } [DV] public SeriesElements _seriesElements; /// /// Gets or sets the name of the series which will be used in the legend. /// public string Name { get { return _name.Value; } set { _name.Value = value; } } [DV] public NString _name = NString.NullValue; /// /// Gets the line format of the border of each data. /// public LineFormat LineFormat { get { return _lineFormat ?? (_lineFormat = new LineFormat(this)); } set { SetParent(value); _lineFormat = value; } } [DV] public LineFormat _lineFormat; /// /// Gets the background filling of the data. /// public FillFormat FillFormat { get { return _fillFormat ?? (_fillFormat = new FillFormat(this)); } set { SetParent(value); _fillFormat = value; } } [DV] public FillFormat _fillFormat; /// /// Gets or sets the size of the marker in a line chart. /// public Unit MarkerSize { get { return _markerSize; } set { _markerSize = value; } } [DV] public Unit _markerSize = Unit.NullValue; /// /// Gets or sets the style of the marker in a line chart. /// public MarkerStyle MarkerStyle { get { return (MarkerStyle)_markerStyle.Value; } set { _markerStyle.Value = (int)value; } } [DV(Type = typeof(MarkerStyle))] public NEnum _markerStyle = NEnum.NullValue(typeof(MarkerStyle)); /// /// Gets or sets the foreground color of the marker in a line chart. /// public Color MarkerForegroundColor { get { return _markerForegroundColor; } set { _markerForegroundColor = value; } } [DV] public Color _markerForegroundColor = Color.Empty; /// /// Gets or sets the background color of the marker in a line chart. /// public Color MarkerBackgroundColor { get { return _markerBackgroundColor; } set { _markerBackgroundColor = value; } } [DV] public Color _markerBackgroundColor = Color.Empty; /// /// Gets or sets the chart type of the series if it's intended to be different than the global chart type. /// public ChartType ChartType { get { return (ChartType)_chartType.Value; } set { _chartType.Value = (int)value; } } [DV(Type = typeof(ChartType))] public NEnum _chartType = NEnum.NullValue(typeof(ChartType)); /// /// Gets the DataLabel of the series. /// public DataLabel DataLabel { get { return _dataLabel ?? (_dataLabel = new DataLabel(this)); } set { SetParent(value); _dataLabel = value; } } [DV] public DataLabel _dataLabel; /// /// Gets or sets whether the series has a DataLabel. /// public bool HasDataLabel { get { return _hasDataLabel.Value; } set { _hasDataLabel.Value = value; } } [DV] public NBool _hasDataLabel = NBool.NullValue; /// /// Gets the elementcount of the series. /// public int Count { get { if (_seriesElements != null) return _seriesElements.Count; return 0; } } #endregion #region public /// /// Converts Series into DDL. /// public override void Serialize(Serializer serializer) { serializer.WriteLine("\\series"); int pos = serializer.BeginAttributes(); if (!_name.IsNull) serializer.WriteSimpleAttribute("Name", Name); if (!_markerSize.IsNull) serializer.WriteSimpleAttribute("MarkerSize", MarkerSize); if (!_markerStyle.IsNull) serializer.WriteSimpleAttribute("MarkerStyle", MarkerStyle); if (!_markerBackgroundColor.IsNull) serializer.WriteSimpleAttribute("MarkerBackgroundColor", MarkerBackgroundColor); if (!_markerForegroundColor.IsNull) serializer.WriteSimpleAttribute("MarkerForegroundColor", MarkerForegroundColor); if (!_chartType.IsNull) serializer.WriteSimpleAttribute("ChartType", ChartType); if (!_hasDataLabel.IsNull) serializer.WriteSimpleAttribute("HasDataLabel", HasDataLabel); if (!IsNull("LineFormat")) _lineFormat.Serialize(serializer); if (!IsNull("FillFormat")) _fillFormat.Serialize(serializer); if (!IsNull("DataLabel")) _dataLabel.Serialize(serializer); serializer.EndAttributes(pos); serializer.BeginContent(); _seriesElements.Serialize(serializer); serializer.WriteLine(""); serializer.EndContent(); } /// /// Returns the meta object of this instance. /// public override Meta Meta { get { return _meta ?? (_meta = new Meta(typeof(Series))); } } static Meta _meta; #endregion } }