Index: src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/PointChartSeriesProperties.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/PointChartSeriesProperties.cs (.../PointChartSeriesProperties.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/DeltaShell/DeltaShell.Plugins.CommonTools.Gui/Property/Charting/PointChartSeriesProperties.cs (.../PointChartSeriesProperties.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -14,44 +14,74 @@ [ResourcesDescription(typeof(Resources), "PointChartSeriesProperties_PointerColor_Description")] public Color Color { - get { return data.Color; } - set { data.Color = value; } + get + { + return data.Color; + } + set + { + data.Color = value; + } } [ResourcesCategory(typeof(Resources), "Charting_Categories_PointStyle")] [ResourcesDisplayName(typeof(Resources), "PointChartSeriesProperties_PointerOutlineColor_DisplayName")] [ResourcesDescription(typeof(Resources), "PointChartSeriesProperties_PointerOutlineColor_Description")] public Color LineColor { - get { return data.LineColor; } - set { data.LineColor = value; } + get + { + return data.LineColor; + } + set + { + data.LineColor = value; + } } [ResourcesCategory(typeof(Resources), "Charting_Categories_PointStyle")] [ResourcesDisplayName(typeof(Resources), "PointChartSeriesProperties_PointerLineVisible_DisplayName")] [ResourcesDescription(typeof(Resources), "PointChartSeriesProperties_PointerLineVisible_Description")] public bool PointerLineVisible { - get { return data.LineVisible; } - set { data.LineVisible = value; } + get + { + return data.LineVisible; + } + set + { + data.LineVisible = value; + } } [ResourcesCategory(typeof(Resources), "Charting_Categories_PointStyle")] [ResourcesDisplayName(typeof(Resources), "PointChartSeriesProperties_Size_DisplayName")] [ResourcesDescription(typeof(Resources), "PointChartSeriesProperties_Size_Description")] public int Size { - get { return data.Size; } - set { data.Size = value; } + get + { + return data.Size; + } + set + { + data.Size = value; + } } [ResourcesCategory(typeof(Resources), "Charting_Categories_PointStyle")] [ResourcesDisplayName(typeof(Resources), "PointChartSeriesProperties_PointerShape_DisplayName")] [ResourcesDescription(typeof(Resources), "PointChartSeriesProperties_PointerShape_Description")] public PointerStyles Style { - get { return data.Style; } - set { data.Style = value; } + get + { + return data.Style; + } + set + { + data.Style = value; + } } } } \ No newline at end of file