Index: Core/Components/src/Core.Components.DotSpatial/Converter/IMapDataConverter.cs =================================================================== diff -u -r7cb5faabd65fb50c17f40c75b76fbd17714cca82 -rf816b467d3aae059a7728645575ec2eabfbcb0f7 --- Core/Components/src/Core.Components.DotSpatial/Converter/IMapDataConverter.cs (.../IMapDataConverter.cs) (revision 7cb5faabd65fb50c17f40c75b76fbd17714cca82) +++ Core/Components/src/Core.Components.DotSpatial/Converter/IMapDataConverter.cs (.../IMapDataConverter.cs) (revision f816b467d3aae059a7728645575ec2eabfbcb0f7) @@ -40,9 +40,9 @@ bool CanConvertMapData(MapData data); /// - /// Creates a based on the that was given. + /// Creates a one or more based on the that was given. /// - /// The data to transform into a . + /// The data to transform into one or more . /// A new of . /// Thrown when returns false. /// Thrown when is null. Index: Core/Components/src/Core.Components.DotSpatial/Converter/MapDataCollectionConverter.cs =================================================================== diff -u -r7cb5faabd65fb50c17f40c75b76fbd17714cca82 -rf816b467d3aae059a7728645575ec2eabfbcb0f7 --- Core/Components/src/Core.Components.DotSpatial/Converter/MapDataCollectionConverter.cs (.../MapDataCollectionConverter.cs) (revision 7cb5faabd65fb50c17f40c75b76fbd17714cca82) +++ Core/Components/src/Core.Components.DotSpatial/Converter/MapDataCollectionConverter.cs (.../MapDataCollectionConverter.cs) (revision f816b467d3aae059a7728645575ec2eabfbcb0f7) @@ -27,7 +27,7 @@ namespace Core.Components.DotSpatial.Converter { /// - /// The converter that converts in into (one or more) . + /// The converter that converts in into one or more . /// public class MapDataCollectionConverter : MapDataConverter { Index: Core/Components/src/Core.Components.DotSpatial/Converter/MapDataConverter.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -rf816b467d3aae059a7728645575ec2eabfbcb0f7 --- Core/Components/src/Core.Components.DotSpatial/Converter/MapDataConverter.cs (.../MapDataConverter.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Components/src/Core.Components.DotSpatial/Converter/MapDataConverter.cs (.../MapDataConverter.cs) (revision f816b467d3aae059a7728645575ec2eabfbcb0f7) @@ -52,9 +52,9 @@ } /// - /// Creates a based on the that was given. + /// Creates one or more based on the that was given. /// - /// The data to transform into a . + /// The data to transform into one or more . /// A new of . protected abstract IList Convert(T data); } Index: Core/Components/src/Core.Components.DotSpatial/Converter/MapDataFactory.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -rf816b467d3aae059a7728645575ec2eabfbcb0f7 --- Core/Components/src/Core.Components.DotSpatial/Converter/MapDataFactory.cs (.../MapDataFactory.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Components/src/Core.Components.DotSpatial/Converter/MapDataFactory.cs (.../MapDataFactory.cs) (revision f816b467d3aae059a7728645575ec2eabfbcb0f7) @@ -32,15 +32,19 @@ /// public class MapDataFactory { + /// + /// Collection of converters that the can use to transform . + /// private readonly IEnumerable converters = new Collection { new MapDataCollectionConverter(), new MapPointDataConverter(), new MapLineDataConverter(), new MapPolygonDataConverter() }; + /// - /// Creates a new from the given . + /// Creates one or more new from the given . /// /// The to base the creation of upon. /// A new of . Index: Core/Components/src/Core.Components.OxyPlot/Converter/ChartDataCollectionConverter.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -rf816b467d3aae059a7728645575ec2eabfbcb0f7 --- Core/Components/src/Core.Components.OxyPlot/Converter/ChartDataCollectionConverter.cs (.../ChartDataCollectionConverter.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Components/src/Core.Components.OxyPlot/Converter/ChartDataCollectionConverter.cs (.../ChartDataCollectionConverter.cs) (revision f816b467d3aae059a7728645575ec2eabfbcb0f7) @@ -27,7 +27,7 @@ { /// /// This class converts the in into - /// (one or more) . + /// one or more . /// public class ChartDataCollectionConverter : ChartDataConverter { Index: Core/Components/src/Core.Components.OxyPlot/Converter/ChartDataConverter.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -rf816b467d3aae059a7728645575ec2eabfbcb0f7 --- Core/Components/src/Core.Components.OxyPlot/Converter/ChartDataConverter.cs (.../ChartDataConverter.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Components/src/Core.Components.OxyPlot/Converter/ChartDataConverter.cs (.../ChartDataConverter.cs) (revision f816b467d3aae059a7728645575ec2eabfbcb0f7) @@ -69,7 +69,7 @@ /// /// Creates one or more based on the that was given. /// - /// The data to transform into a . + /// The data to transform into one or more . /// A new of . protected abstract IList Convert(T data); } Index: Core/Components/src/Core.Components.OxyPlot/Converter/IChartDataConverter.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -rf816b467d3aae059a7728645575ec2eabfbcb0f7 --- Core/Components/src/Core.Components.OxyPlot/Converter/IChartDataConverter.cs (.../IChartDataConverter.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Components/src/Core.Components.OxyPlot/Converter/IChartDataConverter.cs (.../IChartDataConverter.cs) (revision f816b467d3aae059a7728645575ec2eabfbcb0f7) @@ -42,7 +42,7 @@ /// /// Creates one or more based on the that was given. /// - /// The data to transform into a . + /// The data to transform into one or more . /// A new of . /// Thrown when /// returns false. Index: Core/Components/src/Core.Components.OxyPlot/Converter/SeriesFactory.cs =================================================================== diff -u -r4512af7782ee31b36941bb280b54d9da2953dd71 -rf816b467d3aae059a7728645575ec2eabfbcb0f7 --- Core/Components/src/Core.Components.OxyPlot/Converter/SeriesFactory.cs (.../SeriesFactory.cs) (revision 4512af7782ee31b36941bb280b54d9da2953dd71) +++ Core/Components/src/Core.Components.OxyPlot/Converter/SeriesFactory.cs (.../SeriesFactory.cs) (revision f816b467d3aae059a7728645575ec2eabfbcb0f7) @@ -44,10 +44,11 @@ }; /// - /// Creates a new from the given . + /// Creates one or more new from the given . /// - /// The to base the creation of a upon. - /// A new . + /// The to base the creation of the upon. + /// A new of . + /// Thrown when the given type is not supported. public IList Create(ChartData data) { foreach (var converter in converters)