在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → WPF Live-Charts-master 图表控件

WPF Live-Charts-master 图表控件

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:5.93M
  • 下载次数:29
  • 浏览次数:345
  • 发布时间:2022-09-08
  • 实例类别:C#语言基础
  • 发 布 人:yangfx
  • 文件格式:.zip
  • 所需积分:2
 相关标签: wpf PF wp

实例介绍

【实例简介】WPF Live-Charts-master 图表控件

ive-Charts 最新demo及源码(Winform、WPF) 非常好用的动态chart,可以动态图形。适合.net平台

【实例截图】

from clipboard

【核心代码】

.
├── Live-Charts-master
│   ├── Charts.sln.DotSettings
│   ├── Core
│   │   ├── AxisCore.cs
│   │   ├── AxisOrientation.cs
│   │   ├── AxisPosition.cs
│   │   ├── AxisSectionCore.cs
│   │   ├── AxisWindow.cs
│   │   ├── AxisWindows.cs
│   │   ├── BarLabelPosition.cs
│   │   ├── BezierData.cs
│   │   ├── ChartFunctions.cs
│   │   ├── ChartPoint.cs
│   │   ├── ChartUpdater.cs
│   │   ├── ChartValues.cs
│   │   ├── Charting.cs
│   │   ├── Charts
│   │   │   ├── CartesianChartCore.cs
│   │   │   ├── ChartCore.cs
│   │   │   └── PieChartCore.cs
│   │   ├── Configurations
│   │   │   ├── CartesianMapper.cs
│   │   │   ├── FinancialMapper.cs
│   │   │   ├── GanttMapper.cs
│   │   │   ├── IPointEvaluator.cs
│   │   │   ├── Mappers.cs
│   │   │   ├── PieMapper.cs
│   │   │   ├── PolarMapper.cs
│   │   │   └── WeightedMapper.cs
│   │   ├── Core.csproj
│   │   ├── Core.csproj.DotSettings
│   │   ├── Core.nuspec
│   │   ├── DataLabelViewModel.cs
│   │   ├── DateAxisCore.cs
│   │   ├── DateAxisWindow.cs
│   │   ├── DateAxisWindows.cs
│   │   ├── DateSeparatorElementCore.cs
│   │   ├── Defaults
│   │   │   ├── AxisLimits.cs
│   │   │   ├── DateTimePoint.cs
│   │   │   ├── GanttPoint.cs
│   │   │   ├── HeatPoint.cs
│   │   │   ├── OHLCPoint.cs
│   │   │   ├── ObservablePoint.cs
│   │   │   ├── ObservableValue.cs
│   │   │   ├── PolarPoint.cs
│   │   │   └── ScatterPoint.cs
│   │   ├── Definitions
│   │   │   ├── Charts
│   │   │   │   ├── IAxisSectionView.cs
│   │   │   │   ├── IAxisView.cs
│   │   │   │   ├── IAxisWindow.cs
│   │   │   │   ├── ICartesianChart.cs
│   │   │   │   ├── ICartesianVisualElement.cs
│   │   │   │   ├── IChartView.cs
│   │   │   │   ├── IDateAxisView.cs
│   │   │   │   ├── ILogarithmicAxisView.cs
│   │   │   │   ├── IPieChart.cs
│   │   │   │   ├── ISeparatorElementView.cs
│   │   │   │   ├── ISeparatorView.cs
│   │   │   │   └── IWindowAxisView.cs
│   │   │   ├── Points
│   │   │   │   ├── IBezierPointView.cs
│   │   │   │   ├── IChartPointView.cs
│   │   │   │   ├── IHeatPointView.cs
│   │   │   │   ├── IOhlcPointView.cs
│   │   │   │   ├── IPieSlicePointView.cs
│   │   │   │   ├── IRectanglePointView.cs
│   │   │   │   ├── IScatterPointView.cs
│   │   │   │   └── IStepPointView.cs
│   │   │   └── Series
│   │   │       ├── IAreaPoint.cs
│   │   │       ├── ICartesianSeries.cs
│   │   │       ├── IColumnSeriesView.cs
│   │   │       ├── IFinancialSeriesView.cs
│   │   │       ├── IGroupedStackedSeriesView.cs
│   │   │       ├── IHeatSeriesView.cs
│   │   │       ├── ILineSeriesView.cs
│   │   │       ├── IPieSeries.cs
│   │   │       ├── IPieSeriesView.cs
│   │   │       ├── IRowSeriesView.cs
│   │   │       ├── IScatterSeriesView.cs
│   │   │       ├── ISeriesView.cs
│   │   │       ├── IStackModelableSeriesView.cs
│   │   │       ├── IStackedAreaSeriesView.cs
│   │   │       ├── IStackedColumnSeriesView.cs
│   │   │       ├── IStackedRowSeriesView.cs
│   │   │       └── IVerticalStackedAreaSeriesView.cs
│   │   ├── Delegates.cs
│   │   ├── Dtos
│   │   │   ├── BezierData.cs
│   │   │   ├── CoreColor.cs
│   │   │   ├── CoreGradientStop.cs
│   │   │   ├── CoreLimit.cs
│   │   │   ├── CoreMargin.cs
│   │   │   ├── CorePoint.cs
│   │   │   ├── CoreRectangle.cs
│   │   │   ├── CoreSize.cs
│   │   │   ├── LabelEvaluation.cs
│   │   │   ├── StackedSum.cs
│   │   │   └── TooltipDataViewModel.cs
│   │   ├── Events
│   │   │   ├── Delegates.cs
│   │   │   ├── PreviewRangeChangedEventArgs.cs
│   │   │   └── RangeChangedEventArgs.cs
│   │   ├── Helpers
│   │   │   ├── Extentions.cs
│   │   │   ├── LiveChartsException.cs
│   │   │   └── NoisyCollection.cs
│   │   ├── IBezierData.cs
│   │   ├── IChartValues.cs
│   │   ├── IObservableChartPoint.cs
│   │   ├── LegendLocation.cs
│   │   ├── LogarithmicAxisCore.cs
│   │   ├── Maps
│   │   │   └── MapData.cs
│   │   ├── PanningOptions.cs
│   │   ├── PeriodUnits.cs
│   │   ├── PieLabelPosition.cs
│   │   ├── PointTracker.cs
│   │   ├── PortableCore.csproj.DotSettings
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── ScrollMode.cs
│   │   ├── SeparationState.cs
│   │   ├── SeparatorConfigurationCore.cs
│   │   ├── SeparatorElementCore.cs
│   │   ├── SeriesAlgorithms
│   │   │   ├── CandleAlgorithm.cs
│   │   │   ├── ColumnAlgorithm.cs
│   │   │   ├── HeatAlgorithm.cs
│   │   │   ├── LineAlgorithm.cs
│   │   │   ├── OhlcAlgorithm.cs
│   │   │   ├── PieAlgorithm.cs
│   │   │   ├── RowAlgorithm.cs
│   │   │   ├── ScatterAlgorithm.cs
│   │   │   ├── StackedAreaAlgorithm.cs
│   │   │   ├── StackedColumnAlgorithm.cs
│   │   │   ├── StackedRowAlgorithm.cs
│   │   │   ├── StepLineAlgorithm.cs
│   │   │   ├── VerticalLineAlgorithm.cs
│   │   │   └── VerticalStackedAreaAlgorithm.cs
│   │   ├── SeriesCollection.cs
│   │   ├── SeriesOrientation.cs
│   │   ├── Seriesalgorithm.cs
│   │   ├── StackMode.cs
│   │   ├── TooltipSelectionMode.cs
│   │   ├── UpdaterState.cs
│   │   ├── VisualElementsCollection.cs
│   │   ├── WindowAxisCore.cs
│   │   ├── ZoomingOptions.cs
│   │   ├── core.docs
│   │   ├── docs.xml
│   │   └── readme.txt
│   ├── Core40
│   │   ├── AxisCore.cs
│   │   ├── AxisOrientation.cs
│   │   ├── AxisPosition.cs
│   │   ├── AxisSectionCore.cs
│   │   ├── AxisWindow.cs
│   │   ├── AxisWindows.cs
│   │   ├── BarLabelPosition.cs
│   │   ├── ChartFunctions.cs
│   │   ├── ChartPoint.cs
│   │   ├── ChartUpdater.cs
│   │   ├── ChartValues.cs
│   │   ├── Charting.cs
│   │   ├── Charts
│   │   │   ├── CartesianChartCore.cs
│   │   │   ├── ChartCore.cs
│   │   │   └── PieChartCore.cs
│   │   ├── Configurations
│   │   │   ├── CartesianMapper.cs
│   │   │   ├── FinancialMapper.cs
│   │   │   ├── GanttMapper.cs
│   │   │   ├── IPointEvaluator.cs
│   │   │   ├── Mappers.cs
│   │   │   ├── PieMapper.cs
│   │   │   ├── PolarMapper.cs
│   │   │   └── WeightedMapper.cs
│   │   ├── Core40.csproj
│   │   ├── Core40.csproj.DotSettings
│   │   ├── DataLabelViewModel.cs
│   │   ├── DateAxisCore.cs
│   │   ├── DateAxisWindow.cs
│   │   ├── DateAxisWindows.cs
│   │   ├── DateSeparatorElementCore.cs
│   │   ├── Defaults
│   │   │   ├── AxisLimits.cs
│   │   │   ├── DateTimePoint.cs
│   │   │   ├── GanttPoint.cs
│   │   │   ├── HeatPoint.cs
│   │   │   ├── OHLCPoint.cs
│   │   │   ├── ObservablePoint.cs
│   │   │   ├── ObservableValue.cs
│   │   │   ├── PolarPoint.cs
│   │   │   └── ScatterPoint.cs
│   │   ├── Definitions
│   │   │   ├── Charts
│   │   │   │   ├── IAxisSectionView.cs
│   │   │   │   ├── IAxisView.cs
│   │   │   │   ├── IAxisWindow.cs
│   │   │   │   ├── ICartesianChart.cs
│   │   │   │   ├── ICartesianVisualElement.cs
│   │   │   │   ├── IChartView.cs
│   │   │   │   ├── IDateAxisView.cs
│   │   │   │   ├── ILogarithmicAxisView.cs
│   │   │   │   ├── IPieChart.cs
│   │   │   │   ├── ISeparatorElementView.cs
│   │   │   │   ├── ISeparatorView.cs
│   │   │   │   └── IWindowAxisView.cs
│   │   │   ├── Points
│   │   │   │   ├── IBezierPointView.cs
│   │   │   │   ├── IChartPointView.cs
│   │   │   │   ├── IHeatPointView.cs
│   │   │   │   ├── IOhlcPointView.cs
│   │   │   │   ├── IPieSlicePointView.cs
│   │   │   │   ├── IRectanglePointView.cs
│   │   │   │   ├── IScatterPointView.cs
│   │   │   │   └── IStepPointView.cs
│   │   │   └── Series
│   │   │       ├── IAreaPoint.cs
│   │   │       ├── ICartesianSeries.cs
│   │   │       ├── IColumnSeriesView.cs
│   │   │       ├── IFinancialSeriesView.cs
│   │   │       ├── IGroupedStackedSeriesView.cs
│   │   │       ├── IHeatSeriesView.cs
│   │   │       ├── ILineSeriesView.cs
│   │   │       ├── IPieSeries.cs
│   │   │       ├── IPieSeriesView.cs
│   │   │       ├── IRowSeriesView.cs
│   │   │       ├── IScatterSeriesView.cs
│   │   │       ├── ISeriesView.cs
│   │   │       ├── IStackModelableSeriesView.cs
│   │   │       ├── IStackedAreaSeriesView.cs
│   │   │       ├── IStackedColumnSeriesView.cs
│   │   │       ├── IStackedRowSeriesView.cs
│   │   │       └── IVerticalStackedAreaSeriesView.cs
│   │   ├── Delegates.cs
│   │   ├── Dtos
│   │   │   ├── BezierData.cs
│   │   │   ├── CoreColor.cs
│   │   │   ├── CoreGradientStop.cs
│   │   │   ├── CoreLimit.cs
│   │   │   ├── CoreMargin.cs
│   │   │   ├── CorePoint.cs
│   │   │   ├── CoreRectangle.cs
│   │   │   ├── CoreSize.cs
│   │   │   ├── LabelEvaluation.cs
│   │   │   ├── StackedSum.cs
│   │   │   └── TooltipDataViewModel.cs
│   │   ├── Events
│   │   │   ├── Delegates.cs
│   │   │   ├── PreviewRangeChangedEventArgs.cs
│   │   │   └── RangeChangedEventArgs.cs
│   │   ├── Helpers
│   │   │   ├── Extentions.cs
│   │   │   ├── LiveChartsException.cs
│   │   │   └── NoisyCollection.cs
│   │   ├── IChartValues.cs
│   │   ├── IObservableChartPoint.cs
│   │   ├── LegendLocation.cs
│   │   ├── LogarithmicAxisCore.cs
│   │   ├── Maps
│   │   │   └── MapData.cs
│   │   ├── PanningOptions.cs
│   │   ├── PeriodUnits.cs
│   │   ├── PieLabelPosition.cs
│   │   ├── PointTracker.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── ScrollMode.cs
│   │   ├── SeparationState.cs
│   │   ├── SeparatorConfigurationCore.cs
│   │   ├── SeparatorElementCore.cs
│   │   ├── SeriesAlgorithms
│   │   │   ├── CandleAlgorithm.cs
│   │   │   ├── ColumnAlgorithm.cs
│   │   │   ├── HeatAlgorithm.cs
│   │   │   ├── LineAlgorithm.cs
│   │   │   ├── OhlcAlgorithm.cs
│   │   │   ├── PieAlgorithm.cs
│   │   │   ├── RowAlgorithm.cs
│   │   │   ├── ScatterAlgorithm.cs
│   │   │   ├── StackedAreaAlgorithm.cs
│   │   │   ├── StackedColumnAlgorithm.cs
│   │   │   ├── StackedRowAlgorithm.cs
│   │   │   ├── StepLineAlgorithm.cs
│   │   │   ├── VerticalLineAlgorithm.cs
│   │   │   └── VerticalStackedAreaAlgorithm.cs
│   │   ├── SeriesCollection.cs
│   │   ├── SeriesOrientation.cs
│   │   ├── Seriesalgorithm.cs
│   │   ├── StackMode.cs
│   │   ├── TooltipSelectionMode.cs
│   │   ├── UpdaterState.cs
│   │   ├── VisualElementsCollection.cs
│   │   ├── WindowAxisCore.cs
│   │   └── ZoomingOptions.cs
│   ├── Examples
│   │   ├── UWP
│   │   │   ├── App.xaml
│   │   │   ├── App.xaml.cs
│   │   │   ├── AppShell.xaml
│   │   │   ├── AppShell.xaml.cs
│   │   │   ├── Assets
│   │   │   │   ├── LockScreenLogo.scale-200.png
│   │   │   │   ├── SplashScreen.scale-200.png
│   │   │   │   ├── Square150x150Logo.scale-200.png
│   │   │   │   ├── Square44x44Logo.scale-200.png
│   │   │   │   ├── Square44x44Logo.targetsize-24_altform-unplated.png
│   │   │   │   ├── StoreLogo.png
│   │   │   │   └── Wide310x150Logo.scale-200.png
│   │   │   ├── CartesianChart
│   │   │   │   ├── Basic Bars
│   │   │   │   │   ├── BasicColumn.xaml
│   │   │   │   │   ├── BasicColumn.xaml.cs
│   │   │   │   │   ├── BasicRowExample.xaml
│   │   │   │   │   └── BasicRowExample.xaml.cs
│   │   │   │   ├── Basic Stacked Bar
│   │   │   │   │   ├── BasicStackedColumnExample.xaml
│   │   │   │   │   ├── BasicStackedColumnExample.xaml.cs
│   │   │   │   │   ├── BasicStackedRowPercentageExample.xaml
│   │   │   │   │   └── BasicStackedRowPercentageExample.xaml.cs
│   │   │   │   ├── BasicLine
│   │   │   │   │   ├── BasicLineExample.xaml
│   │   │   │   │   └── BasicLineExample.xaml.cs
│   │   │   │   ├── Bubbles
│   │   │   │   │   ├── BubblesExample.xaml
│   │   │   │   │   └── BubblesExample.xaml.cs
│   │   │   │   ├── Chart to Image
│   │   │   │   │   ├── ChartToImageSample.xaml
│   │   │   │   │   └── ChartToImageSample.xaml.cs
│   │   │   │   ├── ConstantChanges
│   │   │   │   │   ├── ConstantChangesChart.xaml
│   │   │   │   │   ├── ConstantChangesChart.xaml.cs
│   │   │   │   │   └── MeasureModel.cs
│   │   │   │   ├── CustomTooltipAndLegend
│   │   │   │   │   ├── CustomTooltipAndLegendExample.xaml
│   │   │   │   │   ├── CustomTooltipAndLegendExample.xaml.cs
│   │   │   │   │   ├── CustomerVm.cs
│   │   │   │   │   ├── CustomersLegend.xaml
│   │   │   │   │   ├── CustomersLegend.xaml.cs
│   │   │   │   │   ├── CustomersTooltip.xaml
│   │   │   │   │   └── CustomersTooltip.xaml.cs
│   │   │   │   ├── Customized Series
│   │   │   │   │   ├── CustomizedLineSeries.xaml
│   │   │   │   │   └── CustomizedLineSeries.xaml.cs
│   │   │   │   ├── DynamicVisibility
│   │   │   │   │   ├── DynamicVisibilityExample.xaml
│   │   │   │   │   └── DynamicVisibilityExample.xaml.cs
│   │   │   │   ├── Energy Predictions
│   │   │   │   │   ├── EnergyPredictionExample.xaml
│   │   │   │   │   ├── EnergyPredictionExample.xaml.cs
│   │   │   │   │   ├── OpacityConverter.cs
│   │   │   │   │   └── ReverseConverter.cs
│   │   │   │   ├── Events
│   │   │   │   │   ├── ChartPointCommandHandler.cs
│   │   │   │   │   ├── EventsExample.xaml
│   │   │   │   │   ├── EventsExample.xaml.cs
│   │   │   │   │   └── ViewModel.cs
│   │   │   │   ├── Financial
│   │   │   │   │   ├── CandleStickExample.xaml
│   │   │   │   │   ├── CandleStickExample.xaml.cs
│   │   │   │   │   ├── OhclExample.xaml
│   │   │   │   │   └── OhclExample.xaml.cs
│   │   │   │   ├── FullyResponsive
│   │   │   │   │   ├── FullyResponsiveExample.xaml
│   │   │   │   │   └── FullyResponsiveExample.xaml.cs
│   │   │   │   ├── Funnel Chart
│   │   │   │   │   ├── FunnelExample.xaml
│   │   │   │   │   ├── FunnelExample.xaml.cs
│   │   │   │   │   └── resources
│   │   │   │   │       ├── fingerprint.png
│   │   │   │   │       ├── user.png
│   │   │   │   │       └── view.png
│   │   │   │   ├── GanttChart
│   │   │   │   │   ├── GanttExample.xaml
│   │   │   │   │   └── GanttExample.xaml.cs
│   │   │   │   ├── HeatChart
│   │   │   │   │   ├── HeatSeriesExample.xaml
│   │   │   │   │   └── HeatSeriesExample.xaml.cs
│   │   │   │   ├── InLineSyntax
│   │   │   │   │   ├── InLineSyntaxTest.xaml
│   │   │   │   │   └── InLineSyntaxTest.xaml.cs
│   │   │   │   ├── Inverted Series
│   │   │   │   │   ├── InvertedExample.xaml
│   │   │   │   │   └── InvertedExample.xaml.cs
│   │   │   │   ├── Irregular Intervals
│   │   │   │   │   ├── IrregularIntervalsExample.xaml
│   │   │   │   │   └── IrregularIntervalsExample.xaml.cs
│   │   │   │   ├── Labels
│   │   │   │   │   ├── LabelsExample.xaml
│   │   │   │   │   ├── LabelsExample.xaml.cs
│   │   │   │   │   ├── LabelsHorizontalExample.xaml
│   │   │   │   │   └── LabelsHorizontalExample.xaml.cs
│   │   │   │   ├── LineExample
│   │   │   │   │   ├── LineExample.xaml
│   │   │   │   │   └── LineExample.xaml.cs
│   │   │   │   ├── Linq
│   │   │   │   │   ├── City.cs
│   │   │   │   │   ├── DataBase.cs
│   │   │   │   │   ├── LinqExample.xaml
│   │   │   │   │   └── LinqExample.xaml.cs
│   │   │   │   ├── LogarithmScale
│   │   │   │   │   ├── LogarithmScaleExample.xaml
│   │   │   │   │   └── LogarithmScaleExample.xaml.cs
│   │   │   │   ├── ManualZAndP
│   │   │   │   │   ├── ManualZAndPExample.xaml
│   │   │   │   │   └── ManualZAndPExample.xaml.cs
│   │   │   │   ├── MaterialCards
│   │   │   │   │   ├── MaterialCards.xaml
│   │   │   │   │   └── MaterialCards.xaml.cs
│   │   │   │   ├── Missing Line Points
│   │   │   │   │   ├── MissingPointsExample.xaml
│   │   │   │   │   └── MissingPointsExample.xaml.cs
│   │   │   │   ├── MixingSeries
│   │   │   │   │   ├── MixingSeries.xaml
│   │   │   │   │   └── MixingSeries.xaml.cs
│   │   │   │   ├── MultiAxes
│   │   │   │   │   ├── MultiAxesChart.xaml
│   │   │   │   │   └── MultiAxesChart.xaml.cs
│   │   │   │   ├── NegativeStackedRow
│   │   │   │   │   ├── NegativeStackedRowExample.xaml
│   │   │   │   │   └── NegativeStackedRowExample.xaml.cs
│   │   │   │   ├── PointShapeLine
│   │   │   │   │   ├── PointShapeLineExample.xaml
│   │   │   │   │   └── PointShapeLineExample.xaml.cs
│   │   │   │   ├── PointState
│   │   │   │   │   ├── PointStateExample.xaml
│   │   │   │   │   └── PointStateExample.xaml.cs
│   │   │   │   ├── ScatterPlot
│   │   │   │   │   ├── ScatterExample.xaml
│   │   │   │   │   └── ScatterExample.xaml.cs
│   │   │   │   ├── Sections
│   │   │   │   │   ├── SectionsExample.xaml
│   │   │   │   │   └── SectionsExample.xaml.cs
│   │   │   │   ├── SectionsDragable
│   │   │   │   │   ├── DragableSections.xaml
│   │   │   │   │   └── DragableSections.xaml.cs
│   │   │   │   ├── SharedTooltip
│   │   │   │   │   ├── SharedTooltipExample.xaml
│   │   │   │   │   └── SharedTooltipExample.xaml.cs
│   │   │   │   ├── SolidColorChart
│   │   │   │   │   ├── SolidColorExample.xaml
│   │   │   │   │   └── SolidColorExample.xaml.cs
│   │   │   │   ├── StackedArea
│   │   │   │   │   ├── StackedAreaExample.xaml
│   │   │   │   │   ├── StackedAreaExample.xaml.cs
│   │   │   │   │   ├── VerticalStackedAreaExample.xaml
│   │   │   │   │   └── VerticalStackedAreaExample.xaml.cs
│   │   │   │   ├── StackedBar
│   │   │   │   │   ├── StackedColumnExample.xaml
│   │   │   │   │   ├── StackedColumnExample.xaml.cs
│   │   │   │   │   ├── StackedRowExample.xaml
│   │   │   │   │   └── StackedRowExample.xaml.cs
│   │   │   │   ├── StepLine
│   │   │   │   │   ├── StepLineExample.xaml
│   │   │   │   │   └── StepLineExample.xaml.cs
│   │   │   │   ├── TypesSupport
│   │   │   │   │   ├── TypesPlotting.xaml
│   │   │   │   │   └── TypesPlotting.xaml.cs
│   │   │   │   ├── UIElements
│   │   │   │   │   ├── UIElementsExample.xaml
│   │   │   │   │   ├── UIElementsExample.xaml.cs
│   │   │   │   │   └── warning.png
│   │   │   │   ├── Using DateTime
│   │   │   │   │   ├── DateModel.cs
│   │   │   │   │   ├── DateTime.xaml
│   │   │   │   │   └── DateTime.xaml.cs
│   │   │   │   ├── ZoomingAndPanning
│   │   │   │   │   ├── ZoomingAndPanning.xaml
│   │   │   │   │   └── ZoomingAndPanning.xaml.cs
│   │   │   │   └── zzIssues
│   │   │   │       ├── Issue179.xaml
│   │   │   │       └── Issue179.xaml.cs
│   │   │   ├── Commons
│   │   │   │   ├── SampleCategory.cs
│   │   │   │   ├── SampleDefinition.cs
│   │   │   │   └── SampleDefinitions.cs
│   │   │   ├── Converters
│   │   │   │   └── BoolToObjectConverter.cs
│   │   │   ├── Gauges
│   │   │   │   ├── AngularGaugeExmple.xaml
│   │   │   │   ├── AngularGaugeExmple.xaml.cs
│   │   │   │   ├── Gauge360.xaml
│   │   │   │   └── Gauge360.xaml.cs
│   │   │   ├── Package.appxmanifest
│   │   │   ├── PieChart
│   │   │   │   ├── DoughnutChartExample.xaml
│   │   │   │   ├── DoughnutChartExample.xaml.cs
│   │   │   │   ├── PieChartExample.xaml
│   │   │   │   └── PieChartExample.xaml.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   └── Default.rd.xml
│   │   │   ├── UWP_TemporaryKey.pfx
│   │   │   ├── Uwp.csproj
│   │   │   ├── Views
│   │   │   │   ├── MainPage.xaml
│   │   │   │   └── MainPage.xaml.cs
│   │   │   ├── cities.csv
│   │   │   └── project.json
│   │   ├── WinForms
│   │   │   ├── App.config
│   │   │   ├── Cartesian
│   │   │   │   ├── Basic Stacked Bar
│   │   │   │   │   ├── BasicStackedColumnExample.Designer.cs
│   │   │   │   │   ├── BasicStackedColumnExample.cs
│   │   │   │   │   ├── BasicStackedColumnExample.resx
│   │   │   │   │   ├── BasicsStackedRowExample.Designer.cs
│   │   │   │   │   ├── BasicsStackedRowExample.cs
│   │   │   │   │   └── BasicsStackedRowExample.resx
│   │   │   │   ├── BasicBar
│   │   │   │   │   ├── BasicColumnExample.Designer.cs
│   │   │   │   │   ├── BasicColumnExample.cs
│   │   │   │   │   ├── BasicColumnExample.resx
│   │   │   │   │   ├── BasicRowExample.Designer.cs
│   │   │   │   │   ├── BasicRowExample.cs
│   │   │   │   │   └── BasicRowExample.resx
│   │   │   │   ├── BasicBubbles
│   │   │   │   │   ├── BasicBubblesExample.Designer.cs
│   │   │   │   │   ├── BasicBubblesExample.cs
│   │   │   │   │   └── BasicBubblesExample.resx
│   │   │   │   ├── BasicLine
│   │   │   │   │   ├── BasicLineExample.Designer.cs
│   │   │   │   │   ├── BasicLineExample.cs
│   │   │   │   │   └── BasicLineExample.resx
│   │   │   │   ├── ConstantChanges
│   │   │   │   │   ├── ConstantChanges.Designer.cs
│   │   │   │   │   ├── ConstantChanges.cs
│   │   │   │   │   ├── ConstantChanges.resx
│   │   │   │   │   └── MeasureModel.cs
│   │   │   │   ├── Customized Series
│   │   │   │   │   ├── Customized Line Series.Designer.cs
│   │   │   │   │   ├── Customized Line Series.cs
│   │   │   │   │   └── Customized Line Series.resx
│   │   │   │   ├── DataPagination
│   │   │   │   │   ├── DataPaginationExample.Designer.cs
│   │   │   │   │   ├── DataPaginationExample.cs
│   │   │   │   │   └── DataPaginationExample.resx
│   │   │   │   ├── DateTime
│   │   │   │   │   ├── DateTimeExample.Designer.cs
│   │   │   │   │   ├── DateTimeExample.cs
│   │   │   │   │   └── DateTimeExample.resx
│   │   │   │   ├── DynamicVisibility
│   │   │   │   │   ├── DynamicVisibiltyExample.Designer.cs
│   │   │   │   │   ├── DynamicVisibiltyExample.cs
│   │   │   │   │   └── DynamicVisibiltyExample.resx
│   │   │   │   ├── Events
│   │   │   │   │   ├── EventsExample.Designer.cs
│   │   │   │   │   ├── EventsExample.cs
│   │   │   │   │   └── EventsExample.resx
│   │   │   │   ├── Financial
│   │   │   │   │   ├── FinancialExample.Designer.cs
│   │   │   │   │   ├── FinancialExample.cs
│   │   │   │   │   └── FinancialExample.resx
│   │   │   │   ├── FullyResponsive
│   │   │   │   │   ├── FullyResponsive.Designer.cs
│   │   │   │   │   ├── FullyResponsive.cs
│   │   │   │   │   └── FullyResponsive.resx
│   │   │   │   ├── FunnelChart
│   │   │   │   │   ├── FunnelExample.Designer.cs
│   │   │   │   │   ├── FunnelExample.cs
│   │   │   │   │   ├── FunnelExample.resx
│   │   │   │   │   └── Resources
│   │   │   │   │       ├── fingerprint.png
│   │   │   │   │       ├── user.png
│   │   │   │   │       └── view.png
│   │   │   │   ├── GanttChart
│   │   │   │   │   ├── GanttExample.Designer.cs
│   │   │   │   │   ├── GanttExample.cs
│   │   │   │   │   └── GanttExample.resx
│   │   │   │   ├── HeatSeriesExample
│   │   │   │   │   ├── HeatSeriesExample.Designer.cs
│   │   │   │   │   ├── HeatSeriesExample.cs
│   │   │   │   │   └── HeatSeriesExample.resx
│   │   │   │   ├── Inverted Series
│   │   │   │   │   ├── InvertedSeries.Designer.cs
│   │   │   │   │   ├── InvertedSeries.cs
│   │   │   │   │   └── InvertedSeries.resx
│   │   │   │   ├── Irregular Intervals
│   │   │   │   │   ├── IrregularIntervalsExample.Designer.cs
│   │   │   │   │   ├── IrregularIntervalsExample.cs
│   │   │   │   │   └── IrregularIntervalsExample.resx
│   │   │   │   ├── Labels
│   │   │   │   │   ├── Labels.Designer.cs
│   │   │   │   │   ├── Labels.cs
│   │   │   │   │   └── Labels.resx
│   │   │   │   ├── Linq
│   │   │   │   │   ├── City.cs
│   │   │   │   │   ├── DataBase.cs
│   │   │   │   │   ├── LinqExample.Designer.cs
│   │   │   │   │   ├── LinqExample.cs
│   │   │   │   │   └── LinqExample.resx
│   │   │   │   ├── LogarithmScale
│   │   │   │   │   ├── LogarithmSacale.Designer.cs
│   │   │   │   │   ├── LogarithmSacale.cs
│   │   │   │   │   └── LogarithmSacale.resx
│   │   │   │   ├── MissingPoints
│   │   │   │   │   ├── MissingPoint.Designer.cs
│   │   │   │   │   ├── MissingPoint.cs
│   │   │   │   │   └── MissingPoint.resx
│   │   │   │   ├── MultiAxes
│   │   │   │   │   ├── MultipleAxesExample.Designer.cs
│   │   │   │   │   ├── MultipleAxesExample.cs
│   │   │   │   │   └── MultipleAxesExample.resx
│   │   │   │   ├── NegativeStackedRow
│   │   │   │   │   ├── NegativeStackedRow.Designer.cs
│   │   │   │   │   ├── NegativeStackedRow.cs
│   │   │   │   │   └── NegativeStackedRow.resx
│   │   │   │   ├── PointState
│   │   │   │   │   ├── PointState.Designer.cs
│   │   │   │   │   ├── PointState.cs
│   │   │   │   │   └── PointState.resx
│   │   │   │   ├── ScatterExample
│   │   │   │   │   ├── ScatterForm.Designer.cs
│   │   │   │   │   ├── ScatterForm.cs
│   │   │   │   │   └── ScatterForm.resx
│   │   │   │   ├── Sections
│   │   │   │   │   ├── SectionsExample.Designer.cs
│   │   │   │   │   ├── SectionsExample.cs
│   │   │   │   │   └── SectionsExample.resx
│   │   │   │   ├── StackedArea
│   │   │   │   │   ├── StackedAreaExample.Designer.cs
│   │   │   │   │   ├── StackedAreaExample.cs
│   │   │   │   │   └── StackedAreaExample.resx
│   │   │   │   ├── StepLine
│   │   │   │   │   ├── StepLineExample.Designer.cs
│   │   │   │   │   ├── StepLineExample.cs
│   │   │   │   │   └── StepLineExample.resx
│   │   │   │   ├── UielementsExample
│   │   │   │   │   ├── UielementsExample.Designer.cs
│   │   │   │   │   ├── UielementsExample.cs
│   │   │   │   │   ├── UielementsExample.resx
│   │   │   │   │   └── warning.png
│   │   │   │   └── Zooming and Panning
│   │   │   │       ├── ZomingAndPanningExample.Designer.cs
│   │   │   │       ├── ZomingAndPanningExample.cs
│   │   │   │       └── ZomingAndPanningExample.resx
│   │   │   ├── Gauge
│   │   │   │   ├── 360
│   │   │   │   │   ├── Gauge360Example.Designer.cs
│   │   │   │   │   ├── Gauge360Example.cs
│   │   │   │   │   └── Gauge360Example.resx
│   │   │   │   └── AngularGauge
│   │   │   │       ├── AngularGugeForm.Designer.cs
│   │   │   │       ├── AngularGugeForm.cs
│   │   │   │       └── AngularGugeForm.resx
│   │   │   ├── Main.Designer.cs
│   │   │   ├── Main.cs
│   │   │   ├── Main.resx
│   │   │   ├── Maps
│   │   │   │   ├── GeoMapExample.Designer.cs
│   │   │   │   ├── GeoMapExample.cs
│   │   │   │   ├── GeoMapExample.resx
│   │   │   │   └── World.xml
│   │   │   ├── PieChart
│   │   │   │   ├── DoughnutExample.Designer.cs
│   │   │   │   ├── DoughnutExample.cs
│   │   │   │   ├── DoughnutExample.resx
│   │   │   │   ├── PieChartExample.Designer.cs
│   │   │   │   ├── PieChartExample.cs
│   │   │   │   └── PieChartExample.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Winforms.csproj
│   │   │   ├── Winforms.csproj.DotSettings
│   │   │   └── cities.csv
│   │   └── Wpf
│   │       ├── App.config
│   │       ├── App.xaml
│   │       ├── App.xaml.cs
│   │       ├── CartesianChart
│   │       │   ├── Basic Bars
│   │       │   │   ├── BasicColumn.xaml
│   │       │   │   ├── BasicColumn.xaml.cs
│   │       │   │   ├── BasicRowExample.xaml
│   │       │   │   └── BasicRowExample.xaml.cs
│   │       │   ├── Basic Stacked Bar
│   │       │   │   ├── BasicStackedColumnExample.xaml
│   │       │   │   ├── BasicStackedColumnExample.xaml.cs
│   │       │   │   ├── BasicStackedRowPercentageExample.xaml
│   │       │   │   └── BasicStackedRowPercentageExample.xaml.cs
│   │       │   ├── BasicLine
│   │       │   │   ├── BasicLineExample.xaml
│   │       │   │   └── BasicLineExample.xaml.cs
│   │       │   ├── Bubbles
│   │       │   │   ├── BubblesExample.xaml
│   │       │   │   └── BubblesExample.xaml.cs
│   │       │   ├── Chart to Image
│   │       │   │   ├── ChartToImageSample.xaml
│   │       │   │   └── ChartToImageSample.xaml.cs
│   │       │   ├── ConstantChanges
│   │       │   │   ├── ConstantChangesChart.xaml
│   │       │   │   ├── ConstantChangesChart.xaml.cs
│   │       │   │   └── MeasureModel.cs
│   │       │   ├── CustomTooltipAndLegend
│   │       │   │   ├── CustomTooltipAndLegendExample.xaml
│   │       │   │   ├── CustomTooltipAndLegendExample.xaml.cs
│   │       │   │   ├── CustomerVM.cs
│   │       │   │   ├── CustomersLegend.xaml
│   │       │   │   ├── CustomersLegend.xaml.cs
│   │       │   │   ├── CustomersTooltip.xaml
│   │       │   │   └── CustomersTooltip.xaml.cs
│   │       │   ├── CustomZoomingAndPanning
│   │       │   │   ├── MoveMe.xaml
│   │       │   │   └── MoveMe.xaml.cs
│   │       │   ├── Customized Series
│   │       │   │   ├── CustomizedLineSeries.xaml
│   │       │   │   └── CustomizedLineSeries.xaml.cs
│   │       │   ├── DataLabelTemplate
│   │       │   │   ├── DataLabelTemplateSample.xaml
│   │       │   │   └── DataLabelTemplateSample.xaml.cs
│   │       │   ├── DateAxis
│   │       │   │   ├── DateAxisExample.xaml
│   │       │   │   └── DateAxisExample.xaml.cs
│   │       │   ├── DynamicVisibility
│   │       │   │   ├── DynamicVisibilityExample.xaml
│   │       │   │   └── DynamicVisibilityExample.xaml.cs
│   │       │   ├── Energy Predictions
│   │       │   │   ├── EnergyPredictionExample.xaml
│   │       │   │   ├── EnergyPredictionExample.xaml.cs
│   │       │   │   ├── OpacityConverter.cs
│   │       │   │   └── ReverseConverter.cs
│   │       │   ├── Events
│   │       │   │   ├── ChartPointCommandHandler.cs
│   │       │   │   ├── EventsExample.xaml
│   │       │   │   ├── EventsExample.xaml.cs
│   │       │   │   └── ViewModel.cs
│   │       │   ├── Financial
│   │       │   │   ├── CandleStickExample.xaml
│   │       │   │   ├── CandleStickExample.xaml.cs
│   │       │   │   ├── OhclExample.xaml
│   │       │   │   └── OhclExample.xaml.cs
│   │       │   ├── FullyResponsive
│   │       │   │   ├── FullyResponsiveExample.xaml
│   │       │   │   └── FullyResponsiveExample.xaml.cs
│   │       │   ├── Funnel Chart
│   │       │   │   ├── FunnelExample.xaml
│   │       │   │   ├── FunnelExample.xaml.cs
│   │       │   │   └── resources
│   │       │   │       ├── fingerprint.png
│   │       │   │       ├── user.png
│   │       │   │       └── view.png
│   │       │   ├── GanttChart
│   │       │   │   ├── GanttExample.xaml
│   │       │   │   └── GanttExample.xaml.cs
│   │       │   ├── HeatChart
│   │       │   │   ├── HeatSeriesExample.xaml
│   │       │   │   └── HeatSeriesExample.xaml.cs
│   │       │   ├── InLineSyntax
│   │       │   │   ├── InLineSyntaxTest.xaml
│   │       │   │   └── InLineSyntaxTest.xaml.cs
│   │       │   ├── Inverted Series
│   │       │   │   ├── Inverted Example.xaml
│   │       │   │   └── Inverted Example.xaml.cs
│   │       │   ├── Irregular Intervals
│   │       │   │   ├── IrregularIntervalsExample.xaml
│   │       │   │   └── IrregularIntervalsExample.xaml.cs
│   │       │   ├── Labels
│   │       │   │   ├── LabelsExample.xaml
│   │       │   │   ├── LabelsExample.xaml.cs
│   │       │   │   ├── LabelsHorizontalExample.xaml
│   │       │   │   └── LabelsHorizontalExample.xaml.cs
│   │       │   ├── LineExample
│   │       │   │   ├── LineExample.xaml
│   │       │   │   └── LineExample.xaml.cs
│   │       │   ├── Linq
│   │       │   │   ├── City.cs
│   │       │   │   ├── DataBase.cs
│   │       │   │   ├── LinqExample.xaml
│   │       │   │   └── LinqExample.xaml.cs
│   │       │   ├── LogarithmScale
│   │       │   │   ├── LogarithmScaleExample.xaml
│   │       │   │   └── LogarithmScaleExample.xaml.cs
│   │       │   ├── ManualZAndP
│   │       │   │   ├── ManualZAndPExample.xaml
│   │       │   │   └── ManualZAndPExample.xaml.cs
│   │       │   ├── MaterialCards
│   │       │   │   ├── MaterialCards.xaml
│   │       │   │   └── MaterialCards.xaml.cs
│   │       │   ├── Missing Line Points
│   │       │   │   ├── MissingPointsExample.xaml
│   │       │   │   └── MissingPointsExample.xaml.cs
│   │       │   ├── MixingSeries
│   │       │   │   ├── MixingSeries.xaml
│   │       │   │   └── MixingSeries.xaml.cs
│   │       │   ├── MultiAxes
│   │       │   │   ├── MultiAxesChart.xaml
│   │       │   │   └── MultiAxesChart.xaml.cs
│   │       │   ├── NegativeStackedRow
│   │       │   │   ├── NEgativeStackedRowExample.xaml
│   │       │   │   └── NEgativeStackedRowExample.xaml.cs
│   │       │   ├── PointShapeLine
│   │       │   │   ├── PointShapeLineExample.cs
│   │       │   │   └── PointShapeLineExample.xaml
│   │       │   ├── PointState
│   │       │   │   ├── PointStateExample.xaml
│   │       │   │   └── PointStateExample.xaml.cs
│   │       │   ├── Scatter With Pies
│   │       │   │   ├── Scatter With Pies.xaml
│   │       │   │   └── Scatter With Pies.xaml.cs
│   │       │   ├── ScatterPlot
│   │       │   │   ├── ScatterExample.xaml
│   │       │   │   └── ScatterExample.xaml.cs
│   │       │   ├── Sections
│   │       │   │   ├── SectionsExample.xaml
│   │       │   │   └── SectionsExample.xaml.cs
│   │       │   ├── SectionsDragable
│   │       │   │   ├── DragableSections.xaml
│   │       │   │   └── DragableSections.xaml.cs
│   │       │   ├── SectionsMouseMove
│   │       │   │   ├── SectionMouseMoveSample.xaml
│   │       │   │   ├── SectionMouseMoveSample.xaml.cs
│   │       │   │   └── ViewModel.cs
│   │       │   ├── SharedTooltip
│   │       │   │   ├── SharedTooltipExample.xaml
│   │       │   │   └── SharedTooltipExample.xaml.cs
│   │       │   ├── SolidColorChart
│   │       │   │   ├── SolidColorExample.xaml
│   │       │   │   └── SolidColorExample.xaml.cs
│   │       │   ├── StackedArea
│   │       │   │   ├── StackedAreaExample.xaml
│   │       │   │   ├── StackedAreaExample.xaml.cs
│   │       │   │   ├── VerticalStackedAreaExample.xaml
│   │       │   │   └── VerticalStackedAreaExample.xaml.cs
│   │       │   ├── StackedBar
│   │       │   │   ├── GroupedStackedColumnExample.xaml
│   │       │   │   ├── GroupedStackedColumnExample.xaml.cs
│   │       │   │   ├── GroupedStackedRowExample.xaml
│   │       │   │   ├── GroupedStackedRowExample.xaml.cs
│   │       │   │   ├── StackedColumnExample.xaml
│   │       │   │   ├── StackedColumnExample.xaml.cs
│   │       │   │   ├── StackedRowExample.xaml
│   │       │   │   └── StackedRowExample.xaml.cs
│   │       │   ├── StepLine
│   │       │   │   ├── StepLineExample.xaml
│   │       │   │   └── StepLineExample.xaml.cs
│   │       │   ├── ThreadSafe
│   │       │   │   ├── RelyCommand.cs
│   │       │   │   ├── ThreadSafeExample.xaml
│   │       │   │   ├── ThreadSafeExample.xaml.cs
│   │       │   │   └── ThreadSafeViewModel.cs
│   │       │   ├── TypesSupport
│   │       │   │   ├── TypesPlotting.xaml
│   │       │   │   └── TypesPlotting.xaml.cs
│   │       │   ├── UIElements
│   │       │   │   ├── DataGenerator.cs
│   │       │   │   ├── EventAControl.xaml
│   │       │   │   ├── EventAControl.xaml.cs
│   │       │   │   ├── EventBControl.xaml
│   │       │   │   ├── EventBControl.xaml.cs
│   │       │   │   ├── SelectedItemControl.xaml
│   │       │   │   ├── SelectedItemControl.xaml.cs
│   │       │   │   ├── UiElementsAndEventsExample.xaml.cs
│   │       │   │   ├── UiElementsExample.xaml
│   │       │   │   └── UiElementsViewModel.cs
│   │       │   ├── Using DateTime
│   │       │   │   ├── DateModel.cs
│   │       │   │   ├── DateTime.xaml
│   │       │   │   └── DateTime.xaml.cs
│   │       │   ├── WindowAxis
│   │       │   │   ├── WindowAxisExample.xaml
│   │       │   │   └── WindowAxisExample.xaml.cs
│   │       │   ├── ZoomingAndPanning
│   │       │   │   ├── ZoomingAndPanning.xaml
│   │       │   │   └── ZoomingAndPanning.xaml.cs
│   │       │   └── zzIssues
│   │       │       ├── Issue179.xaml
│   │       │       └── Issue179.xaml.cs
│   │       ├── Gauges
│   │       │   ├── AngularGaugeExmple.xaml
│   │       │   ├── AngularGaugeExmple.xaml.cs
│   │       │   ├── Gauge360.xaml
│   │       │   └── Gauge360.xaml.cs
│   │       ├── Home
│   │       │   ├── HomeView.xaml
│   │       │   ├── HomeView.xaml.cs
│   │       │   ├── HomeViewModel.cs
│   │       │   ├── SampleGroupVm.cs
│   │       │   └── SampleVm.cs
│   │       ├── Left.png
│   │       ├── Maps
│   │       │   ├── GeoMapExample.xaml
│   │       │   ├── GeoMapExample.xaml.cs
│   │       │   └── World.xml
│   │       ├── PanelExample.xaml
│   │       ├── PanelExample.xaml.cs
│   │       ├── PieChart
│   │       │   ├── DoughnutChartExample.xaml
│   │       │   ├── DoughnutChartExample.xaml.cs
│   │       │   ├── DropDowns
│   │       │   │   ├── DataProvider.cs
│   │       │   │   ├── DropDownCommand.cs
│   │       │   │   ├── DropDownViewModel.cs
│   │       │   │   ├── PieDropDownSample.xaml
│   │       │   │   ├── PieDropDownSample.xaml.cs
│   │       │   │   ├── PiePoint.cs
│   │       │   │   └── RelayCommand.cs
│   │       │   ├── PieChartExample.xaml
│   │       │   └── PieChartExample.xaml.cs
│   │       ├── Properties
│   │       │   ├── Annotations.cs
│   │       │   ├── AssemblyInfo.cs
│   │       │   ├── Resources.Designer.cs
│   │       │   ├── Resources.resx
│   │       │   ├── Settings.Designer.cs
│   │       │   └── Settings.settings
│   │       ├── Resources
│   │       │   ├── AppDictionary.xaml
│   │       │   ├── ChartResources.xaml
│   │       │   └── LiveChartsLogo.png
│   │       ├── Right.png
│   │       ├── Wpf.csproj
│   │       ├── Wpf.csproj.DotSettings
│   │       ├── cities.csv
│   │       ├── lvlogo.png
│   │       └── packages.config
│   ├── LICENSE.TXT
│   ├── LVCSign.snk
│   ├── LiveCharts.sln
│   ├── LiveCharts.sln.DotSettings
│   ├── README.md
│   ├── UnitTests
│   │   ├── MemoryLeaks
│   │   │   └── DrawnShapes.cs
│   │   ├── Other
│   │   │   └── SharedSeries.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── SeriesAndValues
│   │   │   ├── NullAndEmpty.cs
│   │   │   └── SeriesAutoColors.cs
│   │   ├── UnitTests.csproj
│   │   └── UnitTests.csproj.DotSettings
│   ├── UwpView
│   │   ├── AngularGauge.cs
│   │   ├── AngularSection.cs
│   │   ├── AxesCollection.cs
│   │   ├── Axis.cs
│   │   ├── AxisSection.cs
│   │   ├── CandleSeries.cs
│   │   ├── CartesianChart.cs
│   │   ├── Charts
│   │   │   └── Base
│   │   │       └── Chart.cs
│   │   ├── ColorsCollection.cs
│   │   ├── ColumnSeries.cs
│   │   ├── Components
│   │   │   ├── AnimationsHelper.cs
│   │   │   ├── AxisSeparatorElement.cs
│   │   │   ├── BrushCloner.cs
│   │   │   ├── ChartUpdater.cs
│   │   │   ├── Converters.cs
│   │   │   ├── DefaultXamlReader.cs
│   │   │   ├── DependencyObjectExtensions.cs
│   │   │   ├── GeometryHelper.cs
│   │   │   ├── GeometryParser.cs
│   │   │   ├── IFondeable.cs
│   │   │   ├── MultiBinding
│   │   │   │   ├── DependencyObjectCollection.cs
│   │   │   │   ├── MultiBindingBehavior.cs
│   │   │   │   ├── MultiBindingItem.cs
│   │   │   │   ├── MultiBindingItemCollection.cs
│   │   │   │   └── MultiValueConverterBase.cs
│   │   │   └── TooltipDto.cs
│   │   ├── Converters
│   │   │   ├── StringFormatConverter.cs
│   │   │   └── TypeConverters.cs
│   │   ├── DefaultAxes.cs
│   │   ├── DefaultGeoMapTooltip.xaml
│   │   ├── DefaultGeoMapTooltip.xaml.cs
│   │   ├── DefaultGeometry.cs
│   │   ├── DefaultLegend.xaml
│   │   ├── DefaultLegend.xaml.cs
│   │   ├── DefaultTooltip.xaml
│   │   ├── DefaultTooltip.xaml.cs
│   │   ├── Extentions.cs
│   │   ├── Gauge.cs
│   │   ├── GeoMap.cs
│   │   ├── HeatColorRange.xaml
│   │   ├── HeatColorRange.xaml.cs
│   │   ├── HeatSeries.cs
│   │   ├── IChartLegend.cs
│   │   ├── IChartTooltip.cs
│   │   ├── LineSegmentSplitter.cs
│   │   ├── LineSeries.cs
│   │   ├── LogarithmicAxis.cs
│   │   ├── Maps
│   │   │   └── MapResolver.cs
│   │   ├── OhlcSeries.cs
│   │   ├── PieChart.cs
│   │   ├── PieSeries.cs
│   │   ├── PointGeometry.cs
│   │   ├── Points
│   │   │   ├── CandlePointView.cs
│   │   │   ├── ColumnPointView.cs
│   │   │   ├── HeatPoint.cs
│   │   │   ├── HorizontalBezierPointView.cs
│   │   │   ├── OhlcPointView.cs
│   │   │   ├── PiePointView.cs
│   │   │   ├── PieSlice.cs
│   │   │   ├── PointExtensions.cs
│   │   │   ├── PointView.cs
│   │   │   ├── RowPointView.cs
│   │   │   ├── ScatterPointView.cs
│   │   │   ├── StepLinePointView.cs
│   │   │   └── VerticalBezierPointView.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── UwpView.rd.xml
│   │   ├── RowSeries.cs
│   │   ├── ScatterSeries.cs
│   │   ├── SectionsCollection.cs
│   │   ├── Separator.cs
│   │   ├── Series.cs
│   │   ├── StackedAreaSeries.cs
│   │   ├── StackedColumnSeries.cs
│   │   ├── StackedRowSeries.cs
│   │   ├── StepLineSeries.cs
│   │   ├── Themes
│   │   │   ├── Colors
│   │   │   │   ├── black.xaml
│   │   │   │   ├── blue.xaml
│   │   │   │   ├── material.xaml
│   │   │   │   ├── metro.xaml
│   │   │   │   └── white.xaml
│   │   │   ├── Size
│   │   │   │   ├── l.xaml
│   │   │   │   ├── m.xaml
│   │   │   │   └── s.xaml
│   │   │   ├── Weight
│   │   │   │   ├── bold.xaml
│   │   │   │   ├── light.xaml
│   │   │   │   └── normal.xaml
│   │   │   └── base.xaml
│   │   ├── UwpView.csproj
│   │   ├── UwpView.nuspec
│   │   ├── VerticalLineSeries.cs
│   │   ├── VerticalStackedAreaSeries.cs
│   │   ├── VisualElement.cs
│   │   ├── install.ps1
│   │   ├── nuget.exe
│   │   └── project.json
│   ├── WinFormsView
│   │   ├── AngularGauge.cs
│   │   ├── CartesianChart.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Gauge.cs
│   │   ├── GeoMap.cs
│   │   ├── PieChart.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── WinFormsView.csproj
│   │   ├── WinFormsView.csproj.DotSettings
│   │   ├── WinFormsView.nuspec
│   │   ├── app.config
│   │   ├── install.ps1
│   │   ├── nuget.exe
│   │   └── winforms.docs
│   ├── WpfView
│   │   ├── AngularGauge.cs
│   │   ├── AngularSection.cs
│   │   ├── AxesCollection.cs
│   │   ├── Axis.cs
│   │   ├── AxisSection.cs
│   │   ├── AxisWindowCollection.cs
│   │   ├── CandleSeries.cs
│   │   ├── CartesianChart.cs
│   │   ├── Charts
│   │   │   └── Base
│   │   │       └── Chart.cs
│   │   ├── ColorsCollection.cs
│   │   ├── ColumnSeries.cs
│   │   ├── Components
│   │   │   ├── AxisSeparatorElement.cs
│   │   │   ├── ChartUpdater.cs
│   │   │   ├── Converters.cs
│   │   │   ├── DefaultXamlReader.cs
│   │   │   ├── IFondeable.cs
│   │   │   ├── ThreadAccess.cs
│   │   │   └── TooltipDto.cs
│   │   ├── Converters
│   │   │   └── TypeConverters.cs
│   │   ├── DateAxis.cs
│   │   ├── DefaultAxes.cs
│   │   ├── DefaultGeoMapTooltip.xaml
│   │   ├── DefaultGeoMapTooltip.xaml.cs
│   │   ├── DefaultGeometry.cs
│   │   ├── DefaultLegend.xaml
│   │   ├── DefaultLegend.xaml.cs
│   │   ├── DefaultTooltip.xaml
│   │   ├── DefaultTooltip.xaml.cs
│   │   ├── Desktop.csproj.DotSettings
│   │   ├── Extentions.cs
│   │   ├── FinancialColoringRule.cs
│   │   ├── Gauge.cs
│   │   ├── GeoMap.cs
│   │   ├── HeatColorRange.xaml
│   │   ├── HeatColorRange.xaml.cs
│   │   ├── HeatSeries.cs
│   │   ├── IChartLegend.cs
│   │   ├── IChartTooltip.cs
│   │   ├── LineSegmentSplitter.cs
│   │   ├── LineSeries.cs
│   │   ├── LiveChartsDesktop.csproj.DotSettings
│   │   ├── LiveChartsWPF.csproj.DotSettings
│   │   ├── LogarithmicAxis.cs
│   │   ├── Maps
│   │   │   └── MapResolver.cs
│   │   ├── OhlcSeries.cs
│   │   ├── PieChart.cs
│   │   ├── PieSeries.cs
│   │   ├── Points
│   │   │   ├── CandlePointView.cs
│   │   │   ├── ColumnPointView.cs
│   │   │   ├── HeatPoint.cs
│   │   │   ├── HorizontalBezierPointView.cs
│   │   │   ├── OhlcPointView.cs
│   │   │   ├── PiePointView.cs
│   │   │   ├── PieSlice.cs
│   │   │   ├── PointView.cs
│   │   │   ├── RowPointView.cs
│   │   │   ├── ScatterPointView.cs
│   │   │   ├── StepLinePointView.cs
│   │   │   └── VerticalBezierPointView.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── RowSeries.cs
│   │   ├── ScatterSeries.cs
│   │   ├── SectionsCollection.cs
│   │   ├── Separator.cs
│   │   ├── Series.cs
│   │   ├── StackedAreaSeries.cs
│   │   ├── StackedColumnSeries.cs
│   │   ├── StackedRowSeries.cs
│   │   ├── StepLineSeries.cs
│   │   ├── Themes
│   │   │   ├── Colors
│   │   │   │   ├── black.xaml
│   │   │   │   ├── blue.xaml
│   │   │   │   ├── material.xaml
│   │   │   │   ├── metro.xaml
│   │   │   │   └── white.xaml
│   │   │   ├── Size
│   │   │   │   ├── l.xaml
│   │   │   │   ├── m.xaml
│   │   │   │   └── s.xaml
│   │   │   ├── Weight
│   │   │   │   ├── bold.xaml
│   │   │   │   ├── light.xaml
│   │   │   │   └── normal.xaml
│   │   │   └── base.xaml
│   │   ├── VerticalLineSeries.cs
│   │   ├── VerticalStackedAreaSeries.cs
│   │   ├── VisualElement.cs
│   │   ├── WindowAxis.cs
│   │   ├── WpfView.csproj
│   │   ├── WpfView.csproj.DotSettings
│   │   ├── WpfView.nuspec
│   │   ├── docs.xml
│   │   ├── install.ps1
│   │   ├── nuget.exe
│   │   └── wpf.docs
│   ├── build.cake
│   ├── build.ps1
│   ├── nuget.exe
│   └── tools
│       └── packages.config
└── 好例子网_Live-Charts-master.zip

217 directories, 965 files



标签: wpf PF wp

实例下载地址

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警