├── .editorconfig ├── .gitignore ├── CODE-OF-CONDUCT.md ├── CODEOWNERS ├── DataViz.sln ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.TXT ├── NuGet.config ├── README.md ├── SECURITY.md ├── THIRD-PARTY-NOTICES.TXT ├── azure-pipelines.yml ├── build.cmd ├── eng ├── Version.Details.xml ├── Versions.props ├── ci.yml ├── cibuild.cmd ├── common │ ├── CIBuild.cmd │ ├── PublishToPackageFeed.proj │ ├── README.md │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── cross │ │ ├── android │ │ │ ├── arm │ │ │ │ └── toolchain.cmake │ │ │ └── arm64 │ │ │ │ └── toolchain.cmake │ │ ├── arm │ │ │ ├── sources.list.bionic │ │ │ ├── sources.list.jessie │ │ │ ├── sources.list.trusty │ │ │ ├── sources.list.vivid │ │ │ ├── sources.list.wily │ │ │ ├── sources.list.xenial │ │ │ ├── sources.list.zesty │ │ │ ├── trusty-lttng-2.4.patch │ │ │ └── trusty.patch │ │ ├── arm64 │ │ │ ├── sources.list.bionic │ │ │ ├── sources.list.trusty │ │ │ ├── sources.list.vivid │ │ │ ├── sources.list.wily │ │ │ ├── sources.list.xenial │ │ │ └── sources.list.zesty │ │ ├── armel │ │ │ ├── sources.list.jessie │ │ │ ├── tizen-build-rootfs.sh │ │ │ ├── tizen-fetch.sh │ │ │ └── tizen │ │ │ │ ├── tizen-dotnet.ks │ │ │ │ └── tizen.patch │ │ ├── build-android-rootfs.sh │ │ ├── build-rootfs.sh │ │ └── toolchain.cmake │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal │ │ ├── Directory.Build.props │ │ └── Tools.csproj │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ │ ├── CommonLibrary.psm1 │ │ ├── common-library.sh │ │ ├── install-cmake.sh │ │ └── install-tool.ps1 │ ├── sdk-task.ps1 │ ├── templates │ │ ├── job │ │ │ ├── job.yml │ │ │ └── publish-build-assets.yml │ │ ├── jobs │ │ │ └── jobs.yml │ │ ├── phases │ │ │ ├── base.yml │ │ │ └── publish-build-assets.yml │ │ └── steps │ │ │ ├── build-reason.yml │ │ │ ├── helix-publish.yml │ │ │ ├── run-on-unix.yml │ │ │ ├── run-on-windows.yml │ │ │ ├── run-script-ifequalelse.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── telemetry-end.yml │ │ │ └── telemetry-start.yml │ ├── tools.ps1 │ └── tools.sh └── packageContent.targets ├── global.json ├── pkg └── System.Windows.Forms.DataVisualization.csproj ├── sample-screenshot.png ├── sample ├── ChartSamples.sln └── ChartSamples │ ├── App.ico │ ├── ChartAppearance │ ├── AntiAliasingSample │ │ ├── AntiAliasingSample.cs │ │ ├── AntiAliasingSample.resx │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ │ ├── AntiAliasingSample.cs.xlf │ │ │ ├── AntiAliasingSample.de.xlf │ │ │ ├── AntiAliasingSample.es.xlf │ │ │ ├── AntiAliasingSample.fr.xlf │ │ │ ├── AntiAliasingSample.it.xlf │ │ │ ├── AntiAliasingSample.ja.xlf │ │ │ ├── AntiAliasingSample.ko.xlf │ │ │ ├── AntiAliasingSample.pl.xlf │ │ │ ├── AntiAliasingSample.pt-BR.xlf │ │ │ ├── AntiAliasingSample.ru.xlf │ │ │ ├── AntiAliasingSample.tr.xlf │ │ │ ├── AntiAliasingSample.zh-Hans.xlf │ │ │ └── AntiAliasingSample.zh-Hant.xlf │ ├── Appearance │ │ ├── ChartAppearance.cs │ │ ├── ChartAppearance.resx │ │ ├── Flag.gif │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ │ ├── ChartAppearance.cs.xlf │ │ │ ├── ChartAppearance.de.xlf │ │ │ ├── ChartAppearance.es.xlf │ │ │ ├── ChartAppearance.fr.xlf │ │ │ ├── ChartAppearance.it.xlf │ │ │ ├── ChartAppearance.ja.xlf │ │ │ ├── ChartAppearance.ko.xlf │ │ │ ├── ChartAppearance.pl.xlf │ │ │ ├── ChartAppearance.pt-BR.xlf │ │ │ ├── ChartAppearance.ru.xlf │ │ │ ├── ChartAppearance.tr.xlf │ │ │ ├── ChartAppearance.zh-Hans.xlf │ │ │ └── ChartAppearance.zh-Hant.xlf │ ├── Borders │ │ ├── Borders.cs │ │ ├── Borders.resx │ │ ├── TOCNodes.xml │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ │ ├── Borders.cs.xlf │ │ │ ├── Borders.de.xlf │ │ │ ├── Borders.es.xlf │ │ │ ├── Borders.fr.xlf │ │ │ ├── Borders.it.xlf │ │ │ ├── Borders.ja.xlf │ │ │ ├── Borders.ko.xlf │ │ │ ├── Borders.pl.xlf │ │ │ ├── Borders.pt-BR.xlf │ │ │ ├── Borders.ru.xlf │ │ │ ├── Borders.tr.xlf │ │ │ ├── Borders.zh-Hans.xlf │ │ │ └── Borders.zh-Hant.xlf │ ├── TOCNodes.xml │ ├── UsingGaps3D │ │ ├── UsingGaps3D.cs │ │ ├── UsingGaps3D.resx │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ │ ├── UsingGaps3D.cs.xlf │ │ │ ├── UsingGaps3D.de.xlf │ │ │ ├── UsingGaps3D.es.xlf │ │ │ ├── UsingGaps3D.fr.xlf │ │ │ ├── UsingGaps3D.it.xlf │ │ │ ├── UsingGaps3D.ja.xlf │ │ │ ├── UsingGaps3D.ko.xlf │ │ │ ├── UsingGaps3D.pl.xlf │ │ │ ├── UsingGaps3D.pt-BR.xlf │ │ │ ├── UsingGaps3D.ru.xlf │ │ │ ├── UsingGaps3D.tr.xlf │ │ │ ├── UsingGaps3D.zh-Hans.xlf │ │ │ └── UsingGaps3D.zh-Hant.xlf │ └── UsingPerspectives │ │ ├── UsingPerspectives.cs │ │ ├── UsingPerspectives.resx │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ ├── UsingPerspectives.cs.xlf │ │ ├── UsingPerspectives.de.xlf │ │ ├── UsingPerspectives.es.xlf │ │ ├── UsingPerspectives.fr.xlf │ │ ├── UsingPerspectives.it.xlf │ │ ├── UsingPerspectives.ja.xlf │ │ ├── UsingPerspectives.ko.xlf │ │ ├── UsingPerspectives.pl.xlf │ │ ├── UsingPerspectives.pt-BR.xlf │ │ ├── UsingPerspectives.ru.xlf │ │ ├── UsingPerspectives.tr.xlf │ │ ├── UsingPerspectives.zh-Hans.xlf │ │ └── UsingPerspectives.zh-Hant.xlf │ ├── ChartFeatures │ ├── Annotations │ │ ├── AnnotationAnchoring │ │ │ ├── AnnotationAnchoring.cs │ │ │ ├── AnnotationAnchoring.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AnnotationAnchoring.cs.xlf │ │ │ │ ├── AnnotationAnchoring.de.xlf │ │ │ │ ├── AnnotationAnchoring.es.xlf │ │ │ │ ├── AnnotationAnchoring.fr.xlf │ │ │ │ ├── AnnotationAnchoring.it.xlf │ │ │ │ ├── AnnotationAnchoring.ja.xlf │ │ │ │ ├── AnnotationAnchoring.ko.xlf │ │ │ │ ├── AnnotationAnchoring.pl.xlf │ │ │ │ ├── AnnotationAnchoring.pt-BR.xlf │ │ │ │ ├── AnnotationAnchoring.ru.xlf │ │ │ │ ├── AnnotationAnchoring.tr.xlf │ │ │ │ ├── AnnotationAnchoring.zh-Hans.xlf │ │ │ │ └── AnnotationAnchoring.zh-Hant.xlf │ │ ├── AnnotationAppearance │ │ │ ├── AnnotationAppearance.cs │ │ │ ├── AnnotationAppearance.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AnnotationAppearance.cs.xlf │ │ │ │ ├── AnnotationAppearance.de.xlf │ │ │ │ ├── AnnotationAppearance.es.xlf │ │ │ │ ├── AnnotationAppearance.fr.xlf │ │ │ │ ├── AnnotationAppearance.it.xlf │ │ │ │ ├── AnnotationAppearance.ja.xlf │ │ │ │ ├── AnnotationAppearance.ko.xlf │ │ │ │ ├── AnnotationAppearance.pl.xlf │ │ │ │ ├── AnnotationAppearance.pt-BR.xlf │ │ │ │ ├── AnnotationAppearance.ru.xlf │ │ │ │ ├── AnnotationAppearance.tr.xlf │ │ │ │ ├── AnnotationAppearance.zh-Hans.xlf │ │ │ │ └── AnnotationAppearance.zh-Hant.xlf │ │ ├── AnnotationEditing │ │ │ ├── AnnotationEditing.cs │ │ │ ├── AnnotationEditing.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AnnotationEditing.cs.xlf │ │ │ │ ├── AnnotationEditing.de.xlf │ │ │ │ ├── AnnotationEditing.es.xlf │ │ │ │ ├── AnnotationEditing.fr.xlf │ │ │ │ ├── AnnotationEditing.it.xlf │ │ │ │ ├── AnnotationEditing.ja.xlf │ │ │ │ ├── AnnotationEditing.ko.xlf │ │ │ │ ├── AnnotationEditing.pl.xlf │ │ │ │ ├── AnnotationEditing.pt-BR.xlf │ │ │ │ ├── AnnotationEditing.ru.xlf │ │ │ │ ├── AnnotationEditing.tr.xlf │ │ │ │ ├── AnnotationEditing.zh-Hans.xlf │ │ │ │ └── AnnotationEditing.zh-Hant.xlf │ │ ├── AnnotationPositionChanging │ │ │ ├── AnnotationPositionChanging.cs │ │ │ ├── AnnotationPositionChanging.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AnnotationPositionChanging.cs.xlf │ │ │ │ ├── AnnotationPositionChanging.de.xlf │ │ │ │ ├── AnnotationPositionChanging.es.xlf │ │ │ │ ├── AnnotationPositionChanging.fr.xlf │ │ │ │ ├── AnnotationPositionChanging.it.xlf │ │ │ │ ├── AnnotationPositionChanging.ja.xlf │ │ │ │ ├── AnnotationPositionChanging.ko.xlf │ │ │ │ ├── AnnotationPositionChanging.pl.xlf │ │ │ │ ├── AnnotationPositionChanging.pt-BR.xlf │ │ │ │ ├── AnnotationPositionChanging.ru.xlf │ │ │ │ ├── AnnotationPositionChanging.tr.xlf │ │ │ │ ├── AnnotationPositionChanging.zh-Hans.xlf │ │ │ │ └── AnnotationPositionChanging.zh-Hant.xlf │ │ ├── AnnotationSmartLabels │ │ │ ├── AnnotationSmartLabels.cs │ │ │ ├── AnnotationSmartLabels.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AnnotationSmartLabels.cs.xlf │ │ │ │ ├── AnnotationSmartLabels.de.xlf │ │ │ │ ├── AnnotationSmartLabels.es.xlf │ │ │ │ ├── AnnotationSmartLabels.fr.xlf │ │ │ │ ├── AnnotationSmartLabels.it.xlf │ │ │ │ ├── AnnotationSmartLabels.ja.xlf │ │ │ │ ├── AnnotationSmartLabels.ko.xlf │ │ │ │ ├── AnnotationSmartLabels.pl.xlf │ │ │ │ ├── AnnotationSmartLabels.pt-BR.xlf │ │ │ │ ├── AnnotationSmartLabels.ru.xlf │ │ │ │ ├── AnnotationSmartLabels.tr.xlf │ │ │ │ ├── AnnotationSmartLabels.zh-Hans.xlf │ │ │ │ └── AnnotationSmartLabels.zh-Hant.xlf │ │ ├── AnnotationStyles │ │ │ ├── AnnotationStyles.cs │ │ │ ├── AnnotationStyles.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AnnotationStyles.cs.xlf │ │ │ │ ├── AnnotationStyles.de.xlf │ │ │ │ ├── AnnotationStyles.es.xlf │ │ │ │ ├── AnnotationStyles.fr.xlf │ │ │ │ ├── AnnotationStyles.it.xlf │ │ │ │ ├── AnnotationStyles.ja.xlf │ │ │ │ ├── AnnotationStyles.ko.xlf │ │ │ │ ├── AnnotationStyles.pl.xlf │ │ │ │ ├── AnnotationStyles.pt-BR.xlf │ │ │ │ ├── AnnotationStyles.ru.xlf │ │ │ │ ├── AnnotationStyles.tr.xlf │ │ │ │ ├── AnnotationStyles.zh-Hans.xlf │ │ │ │ └── AnnotationStyles.zh-Hant.xlf │ │ ├── FreeDrawAnnotation │ │ │ ├── FreeDrawAnnotation.cs │ │ │ ├── FreeDrawAnnotation.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── FreeDrawAnnotation.cs.xlf │ │ │ │ ├── FreeDrawAnnotation.de.xlf │ │ │ │ ├── FreeDrawAnnotation.es.xlf │ │ │ │ ├── FreeDrawAnnotation.fr.xlf │ │ │ │ ├── FreeDrawAnnotation.it.xlf │ │ │ │ ├── FreeDrawAnnotation.ja.xlf │ │ │ │ ├── FreeDrawAnnotation.ko.xlf │ │ │ │ ├── FreeDrawAnnotation.pl.xlf │ │ │ │ ├── FreeDrawAnnotation.pt-BR.xlf │ │ │ │ ├── FreeDrawAnnotation.ru.xlf │ │ │ │ ├── FreeDrawAnnotation.tr.xlf │ │ │ │ ├── FreeDrawAnnotation.zh-Hans.xlf │ │ │ │ └── FreeDrawAnnotation.zh-Hant.xlf │ │ ├── GroupingAnnotations │ │ │ ├── GroupingAnnotations.cs │ │ │ ├── GroupingAnnotations.resx │ │ │ ├── Overview.htm │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── GroupingAnnotations.cs.xlf │ │ │ │ ├── GroupingAnnotations.de.xlf │ │ │ │ ├── GroupingAnnotations.es.xlf │ │ │ │ ├── GroupingAnnotations.fr.xlf │ │ │ │ ├── GroupingAnnotations.it.xlf │ │ │ │ ├── GroupingAnnotations.ja.xlf │ │ │ │ ├── GroupingAnnotations.ko.xlf │ │ │ │ ├── GroupingAnnotations.pl.xlf │ │ │ │ ├── GroupingAnnotations.pt-BR.xlf │ │ │ │ ├── GroupingAnnotations.ru.xlf │ │ │ │ ├── GroupingAnnotations.tr.xlf │ │ │ │ ├── GroupingAnnotations.zh-Hans.xlf │ │ │ │ └── GroupingAnnotations.zh-Hant.xlf │ │ ├── Overview │ │ │ ├── Anchoring.PNG │ │ │ ├── Overview.htm │ │ │ ├── SmartLabel.PNG │ │ │ └── sampleConfig.xml │ │ └── PositionChangedEvent │ │ │ ├── PositionChangedEvent.cs │ │ │ ├── PositionChangedEvent.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── PositionChangedEvent.cs.xlf │ │ │ ├── PositionChangedEvent.de.xlf │ │ │ ├── PositionChangedEvent.es.xlf │ │ │ ├── PositionChangedEvent.fr.xlf │ │ │ ├── PositionChangedEvent.it.xlf │ │ │ ├── PositionChangedEvent.ja.xlf │ │ │ ├── PositionChangedEvent.ko.xlf │ │ │ ├── PositionChangedEvent.pl.xlf │ │ │ ├── PositionChangedEvent.pt-BR.xlf │ │ │ ├── PositionChangedEvent.ru.xlf │ │ │ ├── PositionChangedEvent.tr.xlf │ │ │ ├── PositionChangedEvent.zh-Hans.xlf │ │ │ └── PositionChangedEvent.zh-Hant.xlf │ ├── Axis │ │ ├── Appearance │ │ │ ├── AxisAppearance.cs │ │ │ ├── AxisAppearance.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AxisAppearance.cs.xlf │ │ │ │ ├── AxisAppearance.de.xlf │ │ │ │ ├── AxisAppearance.es.xlf │ │ │ │ ├── AxisAppearance.fr.xlf │ │ │ │ ├── AxisAppearance.it.xlf │ │ │ │ ├── AxisAppearance.ja.xlf │ │ │ │ ├── AxisAppearance.ko.xlf │ │ │ │ ├── AxisAppearance.pl.xlf │ │ │ │ ├── AxisAppearance.pt-BR.xlf │ │ │ │ ├── AxisAppearance.ru.xlf │ │ │ │ ├── AxisAppearance.tr.xlf │ │ │ │ ├── AxisAppearance.zh-Hans.xlf │ │ │ │ └── AxisAppearance.zh-Hant.xlf │ │ ├── Axis Title │ │ │ ├── AxisTitle.cs │ │ │ ├── AxisTitle.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AxisTitle.cs.xlf │ │ │ │ ├── AxisTitle.de.xlf │ │ │ │ ├── AxisTitle.es.xlf │ │ │ │ ├── AxisTitle.fr.xlf │ │ │ │ ├── AxisTitle.it.xlf │ │ │ │ ├── AxisTitle.ja.xlf │ │ │ │ ├── AxisTitle.ko.xlf │ │ │ │ ├── AxisTitle.pl.xlf │ │ │ │ ├── AxisTitle.pt-BR.xlf │ │ │ │ ├── AxisTitle.ru.xlf │ │ │ │ ├── AxisTitle.tr.xlf │ │ │ │ ├── AxisTitle.zh-Hans.xlf │ │ │ │ └── AxisTitle.zh-Hant.xlf │ │ ├── AxisMargins │ │ │ ├── AxisMargins.cs │ │ │ ├── AxisMargins.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AxisMargins.cs.xlf │ │ │ │ ├── AxisMargins.de.xlf │ │ │ │ ├── AxisMargins.es.xlf │ │ │ │ ├── AxisMargins.fr.xlf │ │ │ │ ├── AxisMargins.it.xlf │ │ │ │ ├── AxisMargins.ja.xlf │ │ │ │ ├── AxisMargins.ko.xlf │ │ │ │ ├── AxisMargins.pl.xlf │ │ │ │ ├── AxisMargins.pt-BR.xlf │ │ │ │ ├── AxisMargins.ru.xlf │ │ │ │ ├── AxisMargins.tr.xlf │ │ │ │ ├── AxisMargins.zh-Hans.xlf │ │ │ │ └── AxisMargins.zh-Hant.xlf │ │ ├── AxisScale │ │ │ ├── AxisScale.cs │ │ │ ├── AxisScale.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AxisScale.cs.xlf │ │ │ │ ├── AxisScale.de.xlf │ │ │ │ ├── AxisScale.es.xlf │ │ │ │ ├── AxisScale.fr.xlf │ │ │ │ ├── AxisScale.it.xlf │ │ │ │ ├── AxisScale.ja.xlf │ │ │ │ ├── AxisScale.ko.xlf │ │ │ │ ├── AxisScale.pl.xlf │ │ │ │ ├── AxisScale.pt-BR.xlf │ │ │ │ ├── AxisScale.ru.xlf │ │ │ │ ├── AxisScale.tr.xlf │ │ │ │ ├── AxisScale.zh-Hans.xlf │ │ │ │ └── AxisScale.zh-Hant.xlf │ │ ├── Crossing And Reverse │ │ │ ├── AxisCrossing.cs │ │ │ ├── AxisCrossing.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AxisCrossing.cs.xlf │ │ │ │ ├── AxisCrossing.de.xlf │ │ │ │ ├── AxisCrossing.es.xlf │ │ │ │ ├── AxisCrossing.fr.xlf │ │ │ │ ├── AxisCrossing.it.xlf │ │ │ │ ├── AxisCrossing.ja.xlf │ │ │ │ ├── AxisCrossing.ko.xlf │ │ │ │ ├── AxisCrossing.pl.xlf │ │ │ │ ├── AxisCrossing.pt-BR.xlf │ │ │ │ ├── AxisCrossing.ru.xlf │ │ │ │ ├── AxisCrossing.tr.xlf │ │ │ │ ├── AxisCrossing.zh-Hans.xlf │ │ │ │ └── AxisCrossing.zh-Hant.xlf │ │ ├── GridLinesAndTickMarks │ │ │ ├── GridLinesTicks.cs │ │ │ ├── GridLinesTicks.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── GridLinesTicks.cs.xlf │ │ │ │ ├── GridLinesTicks.de.xlf │ │ │ │ ├── GridLinesTicks.es.xlf │ │ │ │ ├── GridLinesTicks.fr.xlf │ │ │ │ ├── GridLinesTicks.it.xlf │ │ │ │ ├── GridLinesTicks.ja.xlf │ │ │ │ ├── GridLinesTicks.ko.xlf │ │ │ │ ├── GridLinesTicks.pl.xlf │ │ │ │ ├── GridLinesTicks.pt-BR.xlf │ │ │ │ ├── GridLinesTicks.ru.xlf │ │ │ │ ├── GridLinesTicks.tr.xlf │ │ │ │ ├── GridLinesTicks.zh-Hans.xlf │ │ │ │ └── GridLinesTicks.zh-Hant.xlf │ │ ├── HighlightDateRanges │ │ │ ├── HighlightDateRange.cs │ │ │ ├── HighlightDateRange.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── HighlightDateRange.cs.xlf │ │ │ │ ├── HighlightDateRange.de.xlf │ │ │ │ ├── HighlightDateRange.es.xlf │ │ │ │ ├── HighlightDateRange.fr.xlf │ │ │ │ ├── HighlightDateRange.it.xlf │ │ │ │ ├── HighlightDateRange.ja.xlf │ │ │ │ ├── HighlightDateRange.ko.xlf │ │ │ │ ├── HighlightDateRange.pl.xlf │ │ │ │ ├── HighlightDateRange.pt-BR.xlf │ │ │ │ ├── HighlightDateRange.ru.xlf │ │ │ │ ├── HighlightDateRange.tr.xlf │ │ │ │ ├── HighlightDateRange.zh-Hans.xlf │ │ │ │ └── HighlightDateRange.zh-Hant.xlf │ │ ├── InterlacedStrips │ │ │ ├── InterlacedStrips.cs │ │ │ ├── InterlacedStrips.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── InterlacedStrips.cs.xlf │ │ │ │ ├── InterlacedStrips.de.xlf │ │ │ │ ├── InterlacedStrips.es.xlf │ │ │ │ ├── InterlacedStrips.fr.xlf │ │ │ │ ├── InterlacedStrips.it.xlf │ │ │ │ ├── InterlacedStrips.ja.xlf │ │ │ │ ├── InterlacedStrips.ko.xlf │ │ │ │ ├── InterlacedStrips.pl.xlf │ │ │ │ ├── InterlacedStrips.pt-BR.xlf │ │ │ │ ├── InterlacedStrips.ru.xlf │ │ │ │ ├── InterlacedStrips.tr.xlf │ │ │ │ ├── InterlacedStrips.zh-Hans.xlf │ │ │ │ └── InterlacedStrips.zh-Hant.xlf │ │ ├── Logarithmic Scale │ │ │ ├── LogarithmicScale.cs │ │ │ ├── LogarithmicScale.resx │ │ │ ├── Overview.htm │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LogarithmicScale.cs.xlf │ │ │ │ ├── LogarithmicScale.de.xlf │ │ │ │ ├── LogarithmicScale.es.xlf │ │ │ │ ├── LogarithmicScale.fr.xlf │ │ │ │ ├── LogarithmicScale.it.xlf │ │ │ │ ├── LogarithmicScale.ja.xlf │ │ │ │ ├── LogarithmicScale.ko.xlf │ │ │ │ ├── LogarithmicScale.pl.xlf │ │ │ │ ├── LogarithmicScale.pt-BR.xlf │ │ │ │ ├── LogarithmicScale.ru.xlf │ │ │ │ ├── LogarithmicScale.tr.xlf │ │ │ │ ├── LogarithmicScale.zh-Hans.xlf │ │ │ │ └── LogarithmicScale.zh-Hant.xlf │ │ ├── MultipleYAxis │ │ │ ├── MultipleYAxis.cs │ │ │ ├── MultipleYAxis.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── MultipleYAxis.cs.xlf │ │ │ │ ├── MultipleYAxis.de.xlf │ │ │ │ ├── MultipleYAxis.es.xlf │ │ │ │ ├── MultipleYAxis.fr.xlf │ │ │ │ ├── MultipleYAxis.it.xlf │ │ │ │ ├── MultipleYAxis.ja.xlf │ │ │ │ ├── MultipleYAxis.ko.xlf │ │ │ │ ├── MultipleYAxis.pl.xlf │ │ │ │ ├── MultipleYAxis.pt-BR.xlf │ │ │ │ ├── MultipleYAxis.ru.xlf │ │ │ │ ├── MultipleYAxis.tr.xlf │ │ │ │ ├── MultipleYAxis.zh-Hans.xlf │ │ │ │ └── MultipleYAxis.zh-Hant.xlf │ │ ├── Overview │ │ │ ├── DataView.PNG │ │ │ ├── Interlaced.PNG │ │ │ ├── LabelRows.png │ │ │ ├── Overview.htm │ │ │ ├── PrimarySecondaryAxes.PNG │ │ │ └── sampleConfig.xml │ │ ├── PrimaryAndSecondaryAxes │ │ │ ├── PrimarySecondaryAxis.cs │ │ │ ├── PrimarySecondaryAxis.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── PrimarySecondaryAxis.cs.xlf │ │ │ │ ├── PrimarySecondaryAxis.de.xlf │ │ │ │ ├── PrimarySecondaryAxis.es.xlf │ │ │ │ ├── PrimarySecondaryAxis.fr.xlf │ │ │ │ ├── PrimarySecondaryAxis.it.xlf │ │ │ │ ├── PrimarySecondaryAxis.ja.xlf │ │ │ │ ├── PrimarySecondaryAxis.ko.xlf │ │ │ │ ├── PrimarySecondaryAxis.pl.xlf │ │ │ │ ├── PrimarySecondaryAxis.pt-BR.xlf │ │ │ │ ├── PrimarySecondaryAxis.ru.xlf │ │ │ │ ├── PrimarySecondaryAxis.tr.xlf │ │ │ │ ├── PrimarySecondaryAxis.zh-Hans.xlf │ │ │ │ └── PrimarySecondaryAxis.zh-Hant.xlf │ │ ├── ScaleBreaks │ │ │ ├── ScaleBreaks.cs │ │ │ ├── ScaleBreaks.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── ScaleBreaks.cs.xlf │ │ │ │ ├── ScaleBreaks.de.xlf │ │ │ │ ├── ScaleBreaks.es.xlf │ │ │ │ ├── ScaleBreaks.fr.xlf │ │ │ │ ├── ScaleBreaks.it.xlf │ │ │ │ ├── ScaleBreaks.ja.xlf │ │ │ │ ├── ScaleBreaks.ko.xlf │ │ │ │ ├── ScaleBreaks.pl.xlf │ │ │ │ ├── ScaleBreaks.pt-BR.xlf │ │ │ │ ├── ScaleBreaks.ru.xlf │ │ │ │ ├── ScaleBreaks.tr.xlf │ │ │ │ ├── ScaleBreaks.zh-Hans.xlf │ │ │ │ └── ScaleBreaks.zh-Hant.xlf │ │ ├── Strip Lines Offset │ │ │ ├── StripIntervals.cs │ │ │ ├── StripIntervals.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── StripIntervals.cs.xlf │ │ │ │ ├── StripIntervals.de.xlf │ │ │ │ ├── StripIntervals.es.xlf │ │ │ │ ├── StripIntervals.fr.xlf │ │ │ │ ├── StripIntervals.it.xlf │ │ │ │ ├── StripIntervals.ja.xlf │ │ │ │ ├── StripIntervals.ko.xlf │ │ │ │ ├── StripIntervals.pl.xlf │ │ │ │ ├── StripIntervals.pt-BR.xlf │ │ │ │ ├── StripIntervals.ru.xlf │ │ │ │ ├── StripIntervals.tr.xlf │ │ │ │ ├── StripIntervals.zh-Hans.xlf │ │ │ │ └── StripIntervals.zh-Hant.xlf │ │ ├── Strip Lines Title │ │ │ ├── StripLineTitle.cs │ │ │ ├── StripLineTitle.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── StripLineTitle.cs.xlf │ │ │ │ ├── StripLineTitle.de.xlf │ │ │ │ ├── StripLineTitle.es.xlf │ │ │ │ ├── StripLineTitle.fr.xlf │ │ │ │ ├── StripLineTitle.it.xlf │ │ │ │ ├── StripLineTitle.ja.xlf │ │ │ │ ├── StripLineTitle.ko.xlf │ │ │ │ ├── StripLineTitle.pl.xlf │ │ │ │ ├── StripLineTitle.pt-BR.xlf │ │ │ │ ├── StripLineTitle.ru.xlf │ │ │ │ ├── StripLineTitle.tr.xlf │ │ │ │ ├── StripLineTitle.zh-Hans.xlf │ │ │ │ └── StripLineTitle.zh-Hant.xlf │ │ └── StripLines │ │ │ ├── StripLines.cs │ │ │ ├── StripLines.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── StripLines.cs.xlf │ │ │ ├── StripLines.de.xlf │ │ │ ├── StripLines.es.xlf │ │ │ ├── StripLines.fr.xlf │ │ │ ├── StripLines.it.xlf │ │ │ ├── StripLines.ja.xlf │ │ │ ├── StripLines.ko.xlf │ │ │ ├── StripLines.pl.xlf │ │ │ ├── StripLines.pt-BR.xlf │ │ │ ├── StripLines.ru.xlf │ │ │ ├── StripLines.tr.xlf │ │ │ ├── StripLines.zh-Hans.xlf │ │ │ └── StripLines.zh-Hant.xlf │ ├── ChartArea │ │ ├── AligningChartAreas │ │ │ ├── AligningChartingAreas.cs │ │ │ ├── AligningChartingAreas.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AligningChartingAreas.cs.xlf │ │ │ │ ├── AligningChartingAreas.de.xlf │ │ │ │ ├── AligningChartingAreas.es.xlf │ │ │ │ ├── AligningChartingAreas.fr.xlf │ │ │ │ ├── AligningChartingAreas.it.xlf │ │ │ │ ├── AligningChartingAreas.ja.xlf │ │ │ │ ├── AligningChartingAreas.ko.xlf │ │ │ │ ├── AligningChartingAreas.pl.xlf │ │ │ │ ├── AligningChartingAreas.pt-BR.xlf │ │ │ │ ├── AligningChartingAreas.ru.xlf │ │ │ │ ├── AligningChartingAreas.tr.xlf │ │ │ │ ├── AligningChartingAreas.zh-Hans.xlf │ │ │ │ └── AligningChartingAreas.zh-Hant.xlf │ │ ├── AlignmentTypes │ │ │ ├── AlignTypeInnerPlotPosition.PNG │ │ │ ├── AlignTypePosition.PNG │ │ │ ├── AlignmentTypes.cs │ │ │ ├── AlignmentTypes.resx │ │ │ ├── AreaAlignTypeAll.PNG │ │ │ ├── AreaAlignTypeAxesViews.PNG │ │ │ ├── AreaAlignTypeCursor.PNG │ │ │ ├── Overview.htm │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AlignmentTypes.cs.xlf │ │ │ │ ├── AlignmentTypes.de.xlf │ │ │ │ ├── AlignmentTypes.es.xlf │ │ │ │ ├── AlignmentTypes.fr.xlf │ │ │ │ ├── AlignmentTypes.it.xlf │ │ │ │ ├── AlignmentTypes.ja.xlf │ │ │ │ ├── AlignmentTypes.ko.xlf │ │ │ │ ├── AlignmentTypes.pl.xlf │ │ │ │ ├── AlignmentTypes.pt-BR.xlf │ │ │ │ ├── AlignmentTypes.ru.xlf │ │ │ │ ├── AlignmentTypes.tr.xlf │ │ │ │ ├── AlignmentTypes.zh-Hans.xlf │ │ │ │ └── AlignmentTypes.zh-Hant.xlf │ │ ├── Appearance │ │ │ ├── Appearance.cs │ │ │ ├── Appearance.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── Appearance.cs.xlf │ │ │ │ ├── Appearance.de.xlf │ │ │ │ ├── Appearance.es.xlf │ │ │ │ ├── Appearance.fr.xlf │ │ │ │ ├── Appearance.it.xlf │ │ │ │ ├── Appearance.ja.xlf │ │ │ │ ├── Appearance.ko.xlf │ │ │ │ ├── Appearance.pl.xlf │ │ │ │ ├── Appearance.pt-BR.xlf │ │ │ │ ├── Appearance.ru.xlf │ │ │ │ ├── Appearance.tr.xlf │ │ │ │ ├── Appearance.zh-Hans.xlf │ │ │ │ └── Appearance.zh-Hant.xlf │ │ ├── ChartArea3D │ │ │ ├── ChartArea3D.cs │ │ │ ├── ChartArea3D.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── ChartArea3D.cs.xlf │ │ │ │ ├── ChartArea3D.de.xlf │ │ │ │ ├── ChartArea3D.es.xlf │ │ │ │ ├── ChartArea3D.fr.xlf │ │ │ │ ├── ChartArea3D.it.xlf │ │ │ │ ├── ChartArea3D.ja.xlf │ │ │ │ ├── ChartArea3D.ko.xlf │ │ │ │ ├── ChartArea3D.pl.xlf │ │ │ │ ├── ChartArea3D.pt-BR.xlf │ │ │ │ ├── ChartArea3D.ru.xlf │ │ │ │ ├── ChartArea3D.tr.xlf │ │ │ │ ├── ChartArea3D.zh-Hans.xlf │ │ │ │ └── ChartArea3D.zh-Hant.xlf │ │ ├── ChartAreaPosition │ │ │ ├── ChartAreaPosition.cs │ │ │ ├── ChartAreaPosition.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── ChartAreaPosition.cs.xlf │ │ │ │ ├── ChartAreaPosition.de.xlf │ │ │ │ ├── ChartAreaPosition.es.xlf │ │ │ │ ├── ChartAreaPosition.fr.xlf │ │ │ │ ├── ChartAreaPosition.it.xlf │ │ │ │ ├── ChartAreaPosition.ja.xlf │ │ │ │ ├── ChartAreaPosition.ko.xlf │ │ │ │ ├── ChartAreaPosition.pl.xlf │ │ │ │ ├── ChartAreaPosition.pt-BR.xlf │ │ │ │ ├── ChartAreaPosition.ru.xlf │ │ │ │ ├── ChartAreaPosition.tr.xlf │ │ │ │ ├── ChartAreaPosition.zh-Hans.xlf │ │ │ │ └── ChartAreaPosition.zh-Hant.xlf │ │ ├── ChartInDataPoint │ │ │ ├── ChartInDataPoint.cs │ │ │ ├── ChartInDataPoint.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── ChartInDataPoint.cs.xlf │ │ │ │ ├── ChartInDataPoint.de.xlf │ │ │ │ ├── ChartInDataPoint.es.xlf │ │ │ │ ├── ChartInDataPoint.fr.xlf │ │ │ │ ├── ChartInDataPoint.it.xlf │ │ │ │ ├── ChartInDataPoint.ja.xlf │ │ │ │ ├── ChartInDataPoint.ko.xlf │ │ │ │ ├── ChartInDataPoint.pl.xlf │ │ │ │ ├── ChartInDataPoint.pt-BR.xlf │ │ │ │ ├── ChartInDataPoint.ru.xlf │ │ │ │ ├── ChartInDataPoint.tr.xlf │ │ │ │ ├── ChartInDataPoint.zh-Hans.xlf │ │ │ │ └── ChartInDataPoint.zh-Hant.xlf │ │ ├── InsideDoughnut │ │ │ ├── ChartInDoughnut.cs │ │ │ ├── ChartInDoughnut.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── ChartInDoughnut.cs.xlf │ │ │ │ ├── ChartInDoughnut.de.xlf │ │ │ │ ├── ChartInDoughnut.es.xlf │ │ │ │ ├── ChartInDoughnut.fr.xlf │ │ │ │ ├── ChartInDoughnut.it.xlf │ │ │ │ ├── ChartInDoughnut.ja.xlf │ │ │ │ ├── ChartInDoughnut.ko.xlf │ │ │ │ ├── ChartInDoughnut.pl.xlf │ │ │ │ ├── ChartInDoughnut.pt-BR.xlf │ │ │ │ ├── ChartInDoughnut.ru.xlf │ │ │ │ ├── ChartInDoughnut.tr.xlf │ │ │ │ ├── ChartInDoughnut.zh-Hans.xlf │ │ │ │ └── ChartInDoughnut.zh-Hant.xlf │ │ ├── Overview │ │ │ ├── 2DChart.PNG │ │ │ ├── 3DChart.PNG │ │ │ ├── Alignment.PNG │ │ │ ├── GradientColor.PNG │ │ │ ├── NoAlignment.PNG │ │ │ ├── Overview.htm │ │ │ ├── PieWithinPoint.png │ │ │ └── sampleConfig.xml │ │ ├── Series and Chart Areas │ │ │ ├── Overview.htm │ │ │ ├── SeriesAndChartAreas.cs │ │ │ ├── SeriesAndChartAreas.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── SeriesAndChartAreas.cs.xlf │ │ │ │ ├── SeriesAndChartAreas.de.xlf │ │ │ │ ├── SeriesAndChartAreas.es.xlf │ │ │ │ ├── SeriesAndChartAreas.fr.xlf │ │ │ │ ├── SeriesAndChartAreas.it.xlf │ │ │ │ ├── SeriesAndChartAreas.ja.xlf │ │ │ │ ├── SeriesAndChartAreas.ko.xlf │ │ │ │ ├── SeriesAndChartAreas.pl.xlf │ │ │ │ ├── SeriesAndChartAreas.pt-BR.xlf │ │ │ │ ├── SeriesAndChartAreas.ru.xlf │ │ │ │ ├── SeriesAndChartAreas.tr.xlf │ │ │ │ ├── SeriesAndChartAreas.zh-Hans.xlf │ │ │ │ └── SeriesAndChartAreas.zh-Hant.xlf │ │ └── Z Order │ │ │ ├── ZOrder.cs │ │ │ ├── ZOrder.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── ZOrder.cs.xlf │ │ │ ├── ZOrder.de.xlf │ │ │ ├── ZOrder.es.xlf │ │ │ ├── ZOrder.fr.xlf │ │ │ ├── ZOrder.it.xlf │ │ │ ├── ZOrder.ja.xlf │ │ │ ├── ZOrder.ko.xlf │ │ │ ├── ZOrder.pl.xlf │ │ │ ├── ZOrder.pt-BR.xlf │ │ │ ├── ZOrder.ru.xlf │ │ │ ├── ZOrder.tr.xlf │ │ │ ├── ZOrder.zh-Hans.xlf │ │ │ └── ZOrder.zh-Hant.xlf │ ├── Customizations │ │ ├── CustomImage │ │ │ ├── CustomDrawnTitles.cs │ │ │ ├── CustomDrawnTitles.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── CustomDrawnTitles.cs.xlf │ │ │ │ ├── CustomDrawnTitles.de.xlf │ │ │ │ ├── CustomDrawnTitles.es.xlf │ │ │ │ ├── CustomDrawnTitles.fr.xlf │ │ │ │ ├── CustomDrawnTitles.it.xlf │ │ │ │ ├── CustomDrawnTitles.ja.xlf │ │ │ │ ├── CustomDrawnTitles.ko.xlf │ │ │ │ ├── CustomDrawnTitles.pl.xlf │ │ │ │ ├── CustomDrawnTitles.pt-BR.xlf │ │ │ │ ├── CustomDrawnTitles.ru.xlf │ │ │ │ ├── CustomDrawnTitles.tr.xlf │ │ │ │ ├── CustomDrawnTitles.zh-Hans.xlf │ │ │ │ └── CustomDrawnTitles.zh-Hant.xlf │ │ ├── Overview │ │ │ ├── CustomImage.JPG │ │ │ ├── Overview.htm │ │ │ └── sampleConfig.xml │ │ ├── PaintingDataTable │ │ │ ├── PaintingDataTable.cs │ │ │ ├── PaintingDataTable.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── PaintingDataTable.cs.xlf │ │ │ │ ├── PaintingDataTable.de.xlf │ │ │ │ ├── PaintingDataTable.es.xlf │ │ │ │ ├── PaintingDataTable.fr.xlf │ │ │ │ ├── PaintingDataTable.it.xlf │ │ │ │ ├── PaintingDataTable.ja.xlf │ │ │ │ ├── PaintingDataTable.ko.xlf │ │ │ │ ├── PaintingDataTable.pl.xlf │ │ │ │ ├── PaintingDataTable.pt-BR.xlf │ │ │ │ ├── PaintingDataTable.ru.xlf │ │ │ │ ├── PaintingDataTable.tr.xlf │ │ │ │ ├── PaintingDataTable.zh-Hans.xlf │ │ │ │ └── PaintingDataTable.zh-Hant.xlf │ │ └── PreAndPostPaintEvent │ │ │ ├── PrePostPaint.cs │ │ │ ├── PrePostPaint.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── PrePostPaint.cs.xlf │ │ │ ├── PrePostPaint.de.xlf │ │ │ ├── PrePostPaint.es.xlf │ │ │ ├── PrePostPaint.fr.xlf │ │ │ ├── PrePostPaint.it.xlf │ │ │ ├── PrePostPaint.ja.xlf │ │ │ ├── PrePostPaint.ko.xlf │ │ │ ├── PrePostPaint.pl.xlf │ │ │ ├── PrePostPaint.pt-BR.xlf │ │ │ ├── PrePostPaint.ru.xlf │ │ │ ├── PrePostPaint.tr.xlf │ │ │ ├── PrePostPaint.zh-Hans.xlf │ │ │ └── PrePostPaint.zh-Hant.xlf │ ├── DataSeries │ │ ├── AddingSeries │ │ │ ├── AddingSeries.cs │ │ │ ├── AddingSeries.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AddingSeries.cs.xlf │ │ │ │ ├── AddingSeries.de.xlf │ │ │ │ ├── AddingSeries.es.xlf │ │ │ │ ├── AddingSeries.fr.xlf │ │ │ │ ├── AddingSeries.it.xlf │ │ │ │ ├── AddingSeries.ja.xlf │ │ │ │ ├── AddingSeries.ko.xlf │ │ │ │ ├── AddingSeries.pl.xlf │ │ │ │ ├── AddingSeries.pt-BR.xlf │ │ │ │ ├── AddingSeries.ru.xlf │ │ │ │ ├── AddingSeries.tr.xlf │ │ │ │ ├── AddingSeries.zh-Hans.xlf │ │ │ │ └── AddingSeries.zh-Hant.xlf │ │ ├── HidingSeries │ │ │ ├── HidingSeries.cs │ │ │ ├── HidingSeries.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── HidingSeries.cs.xlf │ │ │ │ ├── HidingSeries.de.xlf │ │ │ │ ├── HidingSeries.es.xlf │ │ │ │ ├── HidingSeries.fr.xlf │ │ │ │ ├── HidingSeries.it.xlf │ │ │ │ ├── HidingSeries.ja.xlf │ │ │ │ ├── HidingSeries.ko.xlf │ │ │ │ ├── HidingSeries.pl.xlf │ │ │ │ ├── HidingSeries.pt-BR.xlf │ │ │ │ ├── HidingSeries.ru.xlf │ │ │ │ ├── HidingSeries.tr.xlf │ │ │ │ ├── HidingSeries.zh-Hans.xlf │ │ │ │ └── HidingSeries.zh-Hant.xlf │ │ ├── IndexedX │ │ │ ├── IndexedX.cs │ │ │ ├── IndexedX.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── IndexedX.cs.xlf │ │ │ │ ├── IndexedX.de.xlf │ │ │ │ ├── IndexedX.es.xlf │ │ │ │ ├── IndexedX.fr.xlf │ │ │ │ ├── IndexedX.it.xlf │ │ │ │ ├── IndexedX.ja.xlf │ │ │ │ ├── IndexedX.ko.xlf │ │ │ │ ├── IndexedX.pl.xlf │ │ │ │ ├── IndexedX.pt-BR.xlf │ │ │ │ ├── IndexedX.ru.xlf │ │ │ │ ├── IndexedX.tr.xlf │ │ │ │ ├── IndexedX.zh-Hans.xlf │ │ │ │ └── IndexedX.zh-Hant.xlf │ │ ├── Overview │ │ │ ├── BubbleChart.PNG │ │ │ ├── CustomAttributes.PNG │ │ │ ├── Overview.htm │ │ │ ├── SeriesAndPointsColor.PNG │ │ │ ├── SeriesAppearance.PNG │ │ │ └── sampleConfig.xml │ │ ├── PointWidthAndDepth │ │ │ ├── Overview.htm │ │ │ ├── PointWidthAndDepth.cs │ │ │ ├── PointWidthAndDepth.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── PointWidthAndDepth.cs.xlf │ │ │ │ ├── PointWidthAndDepth.de.xlf │ │ │ │ ├── PointWidthAndDepth.es.xlf │ │ │ │ ├── PointWidthAndDepth.fr.xlf │ │ │ │ ├── PointWidthAndDepth.it.xlf │ │ │ │ ├── PointWidthAndDepth.ja.xlf │ │ │ │ ├── PointWidthAndDepth.ko.xlf │ │ │ │ ├── PointWidthAndDepth.pl.xlf │ │ │ │ ├── PointWidthAndDepth.pt-BR.xlf │ │ │ │ ├── PointWidthAndDepth.ru.xlf │ │ │ │ ├── PointWidthAndDepth.tr.xlf │ │ │ │ ├── PointWidthAndDepth.zh-Hans.xlf │ │ │ │ └── PointWidthAndDepth.zh-Hant.xlf │ │ ├── SecondaryAxis │ │ │ ├── SecondaryAxis.cs │ │ │ ├── SecondaryAxis.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── SecondaryAxis.cs.xlf │ │ │ │ ├── SecondaryAxis.de.xlf │ │ │ │ ├── SecondaryAxis.es.xlf │ │ │ │ ├── SecondaryAxis.fr.xlf │ │ │ │ ├── SecondaryAxis.it.xlf │ │ │ │ ├── SecondaryAxis.ja.xlf │ │ │ │ ├── SecondaryAxis.ko.xlf │ │ │ │ ├── SecondaryAxis.pl.xlf │ │ │ │ ├── SecondaryAxis.pt-BR.xlf │ │ │ │ ├── SecondaryAxis.ru.xlf │ │ │ │ ├── SecondaryAxis.tr.xlf │ │ │ │ ├── SecondaryAxis.zh-Hans.xlf │ │ │ │ └── SecondaryAxis.zh-Hant.xlf │ │ ├── Series Z Order │ │ │ ├── SeriesZOrder.cs │ │ │ ├── SeriesZOrder.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── SeriesZOrder.cs.xlf │ │ │ │ ├── SeriesZOrder.de.xlf │ │ │ │ ├── SeriesZOrder.es.xlf │ │ │ │ ├── SeriesZOrder.fr.xlf │ │ │ │ ├── SeriesZOrder.it.xlf │ │ │ │ ├── SeriesZOrder.ja.xlf │ │ │ │ ├── SeriesZOrder.ko.xlf │ │ │ │ ├── SeriesZOrder.pl.xlf │ │ │ │ ├── SeriesZOrder.pt-BR.xlf │ │ │ │ ├── SeriesZOrder.ru.xlf │ │ │ │ ├── SeriesZOrder.tr.xlf │ │ │ │ ├── SeriesZOrder.zh-Hans.xlf │ │ │ │ └── SeriesZOrder.zh-Hant.xlf │ │ ├── SeriesAppearance │ │ │ ├── Series Appearance.cs │ │ │ ├── Series Appearance.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── Series Appearance.cs.xlf │ │ │ │ ├── Series Appearance.de.xlf │ │ │ │ ├── Series Appearance.es.xlf │ │ │ │ ├── Series Appearance.fr.xlf │ │ │ │ ├── Series Appearance.it.xlf │ │ │ │ ├── Series Appearance.ja.xlf │ │ │ │ ├── Series Appearance.ko.xlf │ │ │ │ ├── Series Appearance.pl.xlf │ │ │ │ ├── Series Appearance.pt-BR.xlf │ │ │ │ ├── Series Appearance.ru.xlf │ │ │ │ ├── Series Appearance.tr.xlf │ │ │ │ ├── Series Appearance.zh-Hans.xlf │ │ │ │ └── Series Appearance.zh-Hant.xlf │ │ ├── UsingLabels │ │ │ ├── UsingLabels.cs │ │ │ ├── UsingLabels.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── UsingLabels.cs.xlf │ │ │ │ ├── UsingLabels.de.xlf │ │ │ │ ├── UsingLabels.es.xlf │ │ │ │ ├── UsingLabels.fr.xlf │ │ │ │ ├── UsingLabels.it.xlf │ │ │ │ ├── UsingLabels.ja.xlf │ │ │ │ ├── UsingLabels.ko.xlf │ │ │ │ ├── UsingLabels.pl.xlf │ │ │ │ ├── UsingLabels.pt-BR.xlf │ │ │ │ ├── UsingLabels.ru.xlf │ │ │ │ ├── UsingLabels.tr.xlf │ │ │ │ ├── UsingLabels.zh-Hans.xlf │ │ │ │ └── UsingLabels.zh-Hant.xlf │ │ └── UsingMarkers │ │ │ ├── UsingMarkers.cs │ │ │ ├── UsingMarkers.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── UsingMarkers.cs.xlf │ │ │ ├── UsingMarkers.de.xlf │ │ │ ├── UsingMarkers.es.xlf │ │ │ ├── UsingMarkers.fr.xlf │ │ │ ├── UsingMarkers.it.xlf │ │ │ ├── UsingMarkers.ja.xlf │ │ │ ├── UsingMarkers.ko.xlf │ │ │ ├── UsingMarkers.pl.xlf │ │ │ ├── UsingMarkers.pt-BR.xlf │ │ │ ├── UsingMarkers.ru.xlf │ │ │ ├── UsingMarkers.tr.xlf │ │ │ ├── UsingMarkers.zh-Hans.xlf │ │ │ └── UsingMarkers.zh-Hant.xlf │ ├── Events │ │ ├── CursorPositionChanged │ │ │ ├── CursorPositionChanged.cs │ │ │ ├── CursorPositionChanged.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── CursorPositionChanged.cs.xlf │ │ │ │ ├── CursorPositionChanged.de.xlf │ │ │ │ ├── CursorPositionChanged.es.xlf │ │ │ │ ├── CursorPositionChanged.fr.xlf │ │ │ │ ├── CursorPositionChanged.it.xlf │ │ │ │ ├── CursorPositionChanged.ja.xlf │ │ │ │ ├── CursorPositionChanged.ko.xlf │ │ │ │ ├── CursorPositionChanged.pl.xlf │ │ │ │ ├── CursorPositionChanged.pt-BR.xlf │ │ │ │ ├── CursorPositionChanged.ru.xlf │ │ │ │ ├── CursorPositionChanged.tr.xlf │ │ │ │ ├── CursorPositionChanged.zh-Hans.xlf │ │ │ │ └── CursorPositionChanged.zh-Hant.xlf │ │ ├── ScrollBarEvents │ │ │ ├── PageScrolling.PNG │ │ │ ├── ScrollBarEvents.cs │ │ │ ├── ScrollBarEvents.resx │ │ │ ├── Zoom2.PNG │ │ │ ├── Zoom3.PNG │ │ │ ├── cscode.txt │ │ │ ├── overview.htm │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── ScrollBarEvents.cs.xlf │ │ │ │ ├── ScrollBarEvents.de.xlf │ │ │ │ ├── ScrollBarEvents.es.xlf │ │ │ │ ├── ScrollBarEvents.fr.xlf │ │ │ │ ├── ScrollBarEvents.it.xlf │ │ │ │ ├── ScrollBarEvents.ja.xlf │ │ │ │ ├── ScrollBarEvents.ko.xlf │ │ │ │ ├── ScrollBarEvents.pl.xlf │ │ │ │ ├── ScrollBarEvents.pt-BR.xlf │ │ │ │ ├── ScrollBarEvents.ru.xlf │ │ │ │ ├── ScrollBarEvents.tr.xlf │ │ │ │ ├── ScrollBarEvents.zh-Hans.xlf │ │ │ │ └── ScrollBarEvents.zh-Hant.xlf │ │ └── ViewChangedEvent │ │ │ ├── Overview.htm │ │ │ ├── ViewChangedEvent.cs │ │ │ ├── ViewChangedEvent.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── ViewChangedEvent.cs.xlf │ │ │ ├── ViewChangedEvent.de.xlf │ │ │ ├── ViewChangedEvent.es.xlf │ │ │ ├── ViewChangedEvent.fr.xlf │ │ │ ├── ViewChangedEvent.it.xlf │ │ │ ├── ViewChangedEvent.ja.xlf │ │ │ ├── ViewChangedEvent.ko.xlf │ │ │ ├── ViewChangedEvent.pl.xlf │ │ │ ├── ViewChangedEvent.pt-BR.xlf │ │ │ ├── ViewChangedEvent.ru.xlf │ │ │ ├── ViewChangedEvent.tr.xlf │ │ │ ├── ViewChangedEvent.zh-Hans.xlf │ │ │ └── ViewChangedEvent.zh-Hant.xlf │ ├── InteractiveCharting │ │ ├── Cursors │ │ │ ├── CursorAppearance │ │ │ │ ├── CursorAppearance.cs │ │ │ │ ├── CursorAppearance.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ │ ├── CursorAppearance.cs.xlf │ │ │ │ │ ├── CursorAppearance.de.xlf │ │ │ │ │ ├── CursorAppearance.es.xlf │ │ │ │ │ ├── CursorAppearance.fr.xlf │ │ │ │ │ ├── CursorAppearance.it.xlf │ │ │ │ │ ├── CursorAppearance.ja.xlf │ │ │ │ │ ├── CursorAppearance.ko.xlf │ │ │ │ │ ├── CursorAppearance.pl.xlf │ │ │ │ │ ├── CursorAppearance.pt-BR.xlf │ │ │ │ │ ├── CursorAppearance.ru.xlf │ │ │ │ │ ├── CursorAppearance.tr.xlf │ │ │ │ │ ├── CursorAppearance.zh-Hans.xlf │ │ │ │ │ └── CursorAppearance.zh-Hant.xlf │ │ │ ├── CursorAxis │ │ │ │ ├── CursorAxis.cs │ │ │ │ ├── CursorAxis.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ │ ├── CursorAxis.cs.xlf │ │ │ │ │ ├── CursorAxis.de.xlf │ │ │ │ │ ├── CursorAxis.es.xlf │ │ │ │ │ ├── CursorAxis.fr.xlf │ │ │ │ │ ├── CursorAxis.it.xlf │ │ │ │ │ ├── CursorAxis.ja.xlf │ │ │ │ │ ├── CursorAxis.ko.xlf │ │ │ │ │ ├── CursorAxis.pl.xlf │ │ │ │ │ ├── CursorAxis.pt-BR.xlf │ │ │ │ │ ├── CursorAxis.ru.xlf │ │ │ │ │ ├── CursorAxis.tr.xlf │ │ │ │ │ ├── CursorAxis.zh-Hans.xlf │ │ │ │ │ └── CursorAxis.zh-Hant.xlf │ │ │ ├── CursorInterval │ │ │ │ ├── CursorInterval.cs │ │ │ │ ├── CursorInterval.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ │ ├── CursorInterval.cs.xlf │ │ │ │ │ ├── CursorInterval.de.xlf │ │ │ │ │ ├── CursorInterval.es.xlf │ │ │ │ │ ├── CursorInterval.fr.xlf │ │ │ │ │ ├── CursorInterval.it.xlf │ │ │ │ │ ├── CursorInterval.ja.xlf │ │ │ │ │ ├── CursorInterval.ko.xlf │ │ │ │ │ ├── CursorInterval.pl.xlf │ │ │ │ │ ├── CursorInterval.pt-BR.xlf │ │ │ │ │ ├── CursorInterval.ru.xlf │ │ │ │ │ ├── CursorInterval.tr.xlf │ │ │ │ │ ├── CursorInterval.zh-Hans.xlf │ │ │ │ │ └── CursorInterval.zh-Hant.xlf │ │ │ ├── KeyboardZoomScroll │ │ │ │ ├── KeyboardZoomScroll.cs │ │ │ │ ├── KeyboardZoomScroll.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ │ ├── KeyboardZoomScroll.cs.xlf │ │ │ │ │ ├── KeyboardZoomScroll.de.xlf │ │ │ │ │ ├── KeyboardZoomScroll.es.xlf │ │ │ │ │ ├── KeyboardZoomScroll.fr.xlf │ │ │ │ │ ├── KeyboardZoomScroll.it.xlf │ │ │ │ │ ├── KeyboardZoomScroll.ja.xlf │ │ │ │ │ ├── KeyboardZoomScroll.ko.xlf │ │ │ │ │ ├── KeyboardZoomScroll.pl.xlf │ │ │ │ │ ├── KeyboardZoomScroll.pt-BR.xlf │ │ │ │ │ ├── KeyboardZoomScroll.ru.xlf │ │ │ │ │ ├── KeyboardZoomScroll.tr.xlf │ │ │ │ │ ├── KeyboardZoomScroll.zh-Hans.xlf │ │ │ │ │ └── KeyboardZoomScroll.zh-Hant.xlf │ │ │ ├── MultiChartAreaCursor │ │ │ │ ├── MultiChartAreaCursor.cs │ │ │ │ ├── MultiChartAreaCursor.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ │ ├── MultiChartAreaCursor.cs.xlf │ │ │ │ │ ├── MultiChartAreaCursor.de.xlf │ │ │ │ │ ├── MultiChartAreaCursor.es.xlf │ │ │ │ │ ├── MultiChartAreaCursor.fr.xlf │ │ │ │ │ ├── MultiChartAreaCursor.it.xlf │ │ │ │ │ ├── MultiChartAreaCursor.ja.xlf │ │ │ │ │ ├── MultiChartAreaCursor.ko.xlf │ │ │ │ │ ├── MultiChartAreaCursor.pl.xlf │ │ │ │ │ ├── MultiChartAreaCursor.pt-BR.xlf │ │ │ │ │ ├── MultiChartAreaCursor.ru.xlf │ │ │ │ │ ├── MultiChartAreaCursor.tr.xlf │ │ │ │ │ ├── MultiChartAreaCursor.zh-Hans.xlf │ │ │ │ │ └── MultiChartAreaCursor.zh-Hant.xlf │ │ │ └── ZoomScrollAuto │ │ │ │ ├── CursorAutoZoomScroll.cs │ │ │ │ ├── CursorAutoZoomScroll.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ ├── CursorAutoZoomScroll.cs.xlf │ │ │ │ ├── CursorAutoZoomScroll.de.xlf │ │ │ │ ├── CursorAutoZoomScroll.es.xlf │ │ │ │ ├── CursorAutoZoomScroll.fr.xlf │ │ │ │ ├── CursorAutoZoomScroll.it.xlf │ │ │ │ ├── CursorAutoZoomScroll.ja.xlf │ │ │ │ ├── CursorAutoZoomScroll.ko.xlf │ │ │ │ ├── CursorAutoZoomScroll.pl.xlf │ │ │ │ ├── CursorAutoZoomScroll.pt-BR.xlf │ │ │ │ ├── CursorAutoZoomScroll.ru.xlf │ │ │ │ ├── CursorAutoZoomScroll.tr.xlf │ │ │ │ ├── CursorAutoZoomScroll.zh-Hans.xlf │ │ │ │ └── CursorAutoZoomScroll.zh-Hant.xlf │ │ ├── Overview │ │ │ ├── Cursors.PNG │ │ │ ├── DrilldownFinalChart.jpg │ │ │ ├── DrilldownInitialChart.PNG │ │ │ ├── Overview.htm │ │ │ ├── TooltipWithKeyword.png │ │ │ └── sampleConfig.xml │ │ ├── Selection │ │ │ ├── DrillDown │ │ │ │ ├── DrillDown.cs │ │ │ │ ├── DrillDown.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ │ ├── DrillDown.cs.xlf │ │ │ │ │ ├── DrillDown.de.xlf │ │ │ │ │ ├── DrillDown.es.xlf │ │ │ │ │ ├── DrillDown.fr.xlf │ │ │ │ │ ├── DrillDown.it.xlf │ │ │ │ │ ├── DrillDown.ja.xlf │ │ │ │ │ ├── DrillDown.ko.xlf │ │ │ │ │ ├── DrillDown.pl.xlf │ │ │ │ │ ├── DrillDown.pt-BR.xlf │ │ │ │ │ ├── DrillDown.ru.xlf │ │ │ │ │ ├── DrillDown.tr.xlf │ │ │ │ │ ├── DrillDown.zh-Hans.xlf │ │ │ │ │ └── DrillDown.zh-Hant.xlf │ │ │ ├── InteractivePie │ │ │ │ ├── InteractivePie.cs │ │ │ │ ├── InteractivePie.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ │ ├── InteractivePie.cs.xlf │ │ │ │ │ ├── InteractivePie.de.xlf │ │ │ │ │ ├── InteractivePie.es.xlf │ │ │ │ │ ├── InteractivePie.fr.xlf │ │ │ │ │ ├── InteractivePie.it.xlf │ │ │ │ │ ├── InteractivePie.ja.xlf │ │ │ │ │ ├── InteractivePie.ko.xlf │ │ │ │ │ ├── InteractivePie.pl.xlf │ │ │ │ │ ├── InteractivePie.pt-BR.xlf │ │ │ │ │ ├── InteractivePie.ru.xlf │ │ │ │ │ ├── InteractivePie.tr.xlf │ │ │ │ │ ├── InteractivePie.zh-Hans.xlf │ │ │ │ │ └── InteractivePie.zh-Hant.xlf │ │ │ ├── PointsDragging │ │ │ │ ├── PointsDragging.cs │ │ │ │ ├── PointsDragging.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ │ ├── PointsDragging.cs.xlf │ │ │ │ │ ├── PointsDragging.de.xlf │ │ │ │ │ ├── PointsDragging.es.xlf │ │ │ │ │ ├── PointsDragging.fr.xlf │ │ │ │ │ ├── PointsDragging.it.xlf │ │ │ │ │ ├── PointsDragging.ja.xlf │ │ │ │ │ ├── PointsDragging.ko.xlf │ │ │ │ │ ├── PointsDragging.pl.xlf │ │ │ │ │ ├── PointsDragging.pt-BR.xlf │ │ │ │ │ ├── PointsDragging.ru.xlf │ │ │ │ │ ├── PointsDragging.tr.xlf │ │ │ │ │ ├── PointsDragging.zh-Hans.xlf │ │ │ │ │ └── PointsDragging.zh-Hant.xlf │ │ │ └── Selection │ │ │ │ ├── Dialog.cs │ │ │ │ ├── Dialog.resx │ │ │ │ ├── Selection.cs │ │ │ │ ├── Selection.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ ├── Dialog.cs.xlf │ │ │ │ ├── Dialog.de.xlf │ │ │ │ ├── Dialog.es.xlf │ │ │ │ ├── Dialog.fr.xlf │ │ │ │ ├── Dialog.it.xlf │ │ │ │ ├── Dialog.ja.xlf │ │ │ │ ├── Dialog.ko.xlf │ │ │ │ ├── Dialog.pl.xlf │ │ │ │ ├── Dialog.pt-BR.xlf │ │ │ │ ├── Dialog.ru.xlf │ │ │ │ ├── Dialog.tr.xlf │ │ │ │ ├── Dialog.zh-Hans.xlf │ │ │ │ ├── Dialog.zh-Hant.xlf │ │ │ │ ├── Selection.cs.xlf │ │ │ │ ├── Selection.de.xlf │ │ │ │ ├── Selection.es.xlf │ │ │ │ ├── Selection.fr.xlf │ │ │ │ ├── Selection.it.xlf │ │ │ │ ├── Selection.ja.xlf │ │ │ │ ├── Selection.ko.xlf │ │ │ │ ├── Selection.pl.xlf │ │ │ │ ├── Selection.pt-BR.xlf │ │ │ │ ├── Selection.ru.xlf │ │ │ │ ├── Selection.tr.xlf │ │ │ │ ├── Selection.zh-Hans.xlf │ │ │ │ └── Selection.zh-Hant.xlf │ │ ├── TOCNodes.xml │ │ ├── ToolTips │ │ │ ├── CustomToolTips │ │ │ │ ├── CustomToolTips.cs │ │ │ │ ├── CustomToolTips.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ │ ├── CustomToolTips.cs.xlf │ │ │ │ │ ├── CustomToolTips.de.xlf │ │ │ │ │ ├── CustomToolTips.es.xlf │ │ │ │ │ ├── CustomToolTips.fr.xlf │ │ │ │ │ ├── CustomToolTips.it.xlf │ │ │ │ │ ├── CustomToolTips.ja.xlf │ │ │ │ │ ├── CustomToolTips.ko.xlf │ │ │ │ │ ├── CustomToolTips.pl.xlf │ │ │ │ │ ├── CustomToolTips.pt-BR.xlf │ │ │ │ │ ├── CustomToolTips.ru.xlf │ │ │ │ │ ├── CustomToolTips.tr.xlf │ │ │ │ │ ├── CustomToolTips.zh-Hans.xlf │ │ │ │ │ └── CustomToolTips.zh-Hant.xlf │ │ │ └── UsingToolTips │ │ │ │ ├── UsingToolTips.cs │ │ │ │ ├── UsingToolTips.resx │ │ │ │ ├── cscode.txt │ │ │ │ ├── sampleConfig.xml │ │ │ │ ├── vbcode.txt │ │ │ │ └── xlf │ │ │ │ ├── UsingToolTips.cs.xlf │ │ │ │ ├── UsingToolTips.de.xlf │ │ │ │ ├── UsingToolTips.es.xlf │ │ │ │ ├── UsingToolTips.fr.xlf │ │ │ │ ├── UsingToolTips.it.xlf │ │ │ │ ├── UsingToolTips.ja.xlf │ │ │ │ ├── UsingToolTips.ko.xlf │ │ │ │ ├── UsingToolTips.pl.xlf │ │ │ │ ├── UsingToolTips.pt-BR.xlf │ │ │ │ ├── UsingToolTips.ru.xlf │ │ │ │ ├── UsingToolTips.tr.xlf │ │ │ │ ├── UsingToolTips.zh-Hans.xlf │ │ │ │ └── UsingToolTips.zh-Hant.xlf │ │ └── ZoomingScrolling │ │ │ ├── BasicZooming │ │ │ ├── BasicZooming.cs │ │ │ ├── BasicZooming.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── BasicZooming.cs.xlf │ │ │ │ ├── BasicZooming.de.xlf │ │ │ │ ├── BasicZooming.es.xlf │ │ │ │ ├── BasicZooming.fr.xlf │ │ │ │ ├── BasicZooming.it.xlf │ │ │ │ ├── BasicZooming.ja.xlf │ │ │ │ ├── BasicZooming.ko.xlf │ │ │ │ ├── BasicZooming.pl.xlf │ │ │ │ ├── BasicZooming.pt-BR.xlf │ │ │ │ ├── BasicZooming.ru.xlf │ │ │ │ ├── BasicZooming.tr.xlf │ │ │ │ ├── BasicZooming.zh-Hans.xlf │ │ │ │ └── BasicZooming.zh-Hant.xlf │ │ │ ├── KeyboardScrolling │ │ │ ├── KeyboardScrolling.cs │ │ │ ├── KeyboardScrolling.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── KeyboardScrolling.cs.xlf │ │ │ │ ├── KeyboardScrolling.de.xlf │ │ │ │ ├── KeyboardScrolling.es.xlf │ │ │ │ ├── KeyboardScrolling.fr.xlf │ │ │ │ ├── KeyboardScrolling.it.xlf │ │ │ │ ├── KeyboardScrolling.ja.xlf │ │ │ │ ├── KeyboardScrolling.ko.xlf │ │ │ │ ├── KeyboardScrolling.pl.xlf │ │ │ │ ├── KeyboardScrolling.pt-BR.xlf │ │ │ │ ├── KeyboardScrolling.ru.xlf │ │ │ │ ├── KeyboardScrolling.tr.xlf │ │ │ │ ├── KeyboardScrolling.zh-Hans.xlf │ │ │ │ └── KeyboardScrolling.zh-Hant.xlf │ │ │ ├── ScrollBarAppearance │ │ │ ├── ScrollBarAppearance.cs │ │ │ ├── ScrollBarAppearance.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── ScrollBarAppearance.cs.xlf │ │ │ │ ├── ScrollBarAppearance.de.xlf │ │ │ │ ├── ScrollBarAppearance.es.xlf │ │ │ │ ├── ScrollBarAppearance.fr.xlf │ │ │ │ ├── ScrollBarAppearance.it.xlf │ │ │ │ ├── ScrollBarAppearance.ja.xlf │ │ │ │ ├── ScrollBarAppearance.ko.xlf │ │ │ │ ├── ScrollBarAppearance.pl.xlf │ │ │ │ ├── ScrollBarAppearance.pt-BR.xlf │ │ │ │ ├── ScrollBarAppearance.ru.xlf │ │ │ │ ├── ScrollBarAppearance.tr.xlf │ │ │ │ ├── ScrollBarAppearance.zh-Hans.xlf │ │ │ │ └── ScrollBarAppearance.zh-Hant.xlf │ │ │ ├── SmallScrollSize │ │ │ ├── SmallScrollSize.cs │ │ │ ├── SmallScrollSize.resx │ │ │ ├── Zoom3.PNG │ │ │ ├── cscode.txt │ │ │ ├── overview.htm │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── SmallScrollSize.cs.xlf │ │ │ │ ├── SmallScrollSize.de.xlf │ │ │ │ ├── SmallScrollSize.es.xlf │ │ │ │ ├── SmallScrollSize.fr.xlf │ │ │ │ ├── SmallScrollSize.it.xlf │ │ │ │ ├── SmallScrollSize.ja.xlf │ │ │ │ ├── SmallScrollSize.ko.xlf │ │ │ │ ├── SmallScrollSize.pl.xlf │ │ │ │ ├── SmallScrollSize.pt-BR.xlf │ │ │ │ ├── SmallScrollSize.ru.xlf │ │ │ │ ├── SmallScrollSize.tr.xlf │ │ │ │ ├── SmallScrollSize.zh-Hans.xlf │ │ │ │ └── SmallScrollSize.zh-Hant.xlf │ │ │ └── ZoomingExtents │ │ │ ├── ZoomingExtents.cs │ │ │ ├── ZoomingExtents.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── ZoomingExtents.cs.xlf │ │ │ ├── ZoomingExtents.de.xlf │ │ │ ├── ZoomingExtents.es.xlf │ │ │ ├── ZoomingExtents.fr.xlf │ │ │ ├── ZoomingExtents.it.xlf │ │ │ ├── ZoomingExtents.ja.xlf │ │ │ ├── ZoomingExtents.ko.xlf │ │ │ ├── ZoomingExtents.pl.xlf │ │ │ ├── ZoomingExtents.pt-BR.xlf │ │ │ ├── ZoomingExtents.ru.xlf │ │ │ ├── ZoomingExtents.tr.xlf │ │ │ ├── ZoomingExtents.zh-Hans.xlf │ │ │ └── ZoomingExtents.zh-Hant.xlf │ ├── Labels │ │ ├── AutoFitAxesLabels │ │ │ ├── AutoFitAxesLabels.cs │ │ │ ├── AutoFitAxesLabels.resx │ │ │ ├── Overview.htm │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AutoFitAxesLabels.cs.xlf │ │ │ │ ├── AutoFitAxesLabels.de.xlf │ │ │ │ ├── AutoFitAxesLabels.es.xlf │ │ │ │ ├── AutoFitAxesLabels.fr.xlf │ │ │ │ ├── AutoFitAxesLabels.it.xlf │ │ │ │ ├── AutoFitAxesLabels.ja.xlf │ │ │ │ ├── AutoFitAxesLabels.ko.xlf │ │ │ │ ├── AutoFitAxesLabels.pl.xlf │ │ │ │ ├── AutoFitAxesLabels.pt-BR.xlf │ │ │ │ ├── AutoFitAxesLabels.ru.xlf │ │ │ │ ├── AutoFitAxesLabels.tr.xlf │ │ │ │ ├── AutoFitAxesLabels.zh-Hans.xlf │ │ │ │ └── AutoFitAxesLabels.zh-Hant.xlf │ │ ├── AxisLabelsInterval │ │ │ ├── AxisLabelsInterval.cs │ │ │ ├── AxisLabelsInterval.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AxisLabelsInterval.cs.xlf │ │ │ │ ├── AxisLabelsInterval.de.xlf │ │ │ │ ├── AxisLabelsInterval.es.xlf │ │ │ │ ├── AxisLabelsInterval.fr.xlf │ │ │ │ ├── AxisLabelsInterval.it.xlf │ │ │ │ ├── AxisLabelsInterval.ja.xlf │ │ │ │ ├── AxisLabelsInterval.ko.xlf │ │ │ │ ├── AxisLabelsInterval.pl.xlf │ │ │ │ ├── AxisLabelsInterval.pt-BR.xlf │ │ │ │ ├── AxisLabelsInterval.ru.xlf │ │ │ │ ├── AxisLabelsInterval.tr.xlf │ │ │ │ ├── AxisLabelsInterval.zh-Hans.xlf │ │ │ │ └── AxisLabelsInterval.zh-Hant.xlf │ │ ├── AxisVarLabelsInterval │ │ │ ├── AxisVarLabelsInterval.cs │ │ │ ├── AxisVarLabelsInterval.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AxisVarLabelsInterval.cs.xlf │ │ │ │ ├── AxisVarLabelsInterval.de.xlf │ │ │ │ ├── AxisVarLabelsInterval.es.xlf │ │ │ │ ├── AxisVarLabelsInterval.fr.xlf │ │ │ │ ├── AxisVarLabelsInterval.it.xlf │ │ │ │ ├── AxisVarLabelsInterval.ja.xlf │ │ │ │ ├── AxisVarLabelsInterval.ko.xlf │ │ │ │ ├── AxisVarLabelsInterval.pl.xlf │ │ │ │ ├── AxisVarLabelsInterval.pt-BR.xlf │ │ │ │ ├── AxisVarLabelsInterval.ru.xlf │ │ │ │ ├── AxisVarLabelsInterval.tr.xlf │ │ │ │ ├── AxisVarLabelsInterval.zh-Hans.xlf │ │ │ │ └── AxisVarLabelsInterval.zh-Hant.xlf │ │ ├── CustomLabels │ │ │ ├── CustomLabels.cs │ │ │ ├── CustomLabels.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── CustomLabels.cs.xlf │ │ │ │ ├── CustomLabels.de.xlf │ │ │ │ ├── CustomLabels.es.xlf │ │ │ │ ├── CustomLabels.fr.xlf │ │ │ │ ├── CustomLabels.it.xlf │ │ │ │ ├── CustomLabels.ja.xlf │ │ │ │ ├── CustomLabels.ko.xlf │ │ │ │ ├── CustomLabels.pl.xlf │ │ │ │ ├── CustomLabels.pt-BR.xlf │ │ │ │ ├── CustomLabels.ru.xlf │ │ │ │ ├── CustomLabels.tr.xlf │ │ │ │ ├── CustomLabels.zh-Hans.xlf │ │ │ │ └── CustomLabels.zh-Hant.xlf │ │ ├── EquallySizedAutoFitFont │ │ │ ├── EquallySizedAutoFont.cs │ │ │ ├── EquallySizedAutoFont.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── EquallySizedAutoFont.cs.xlf │ │ │ │ ├── EquallySizedAutoFont.de.xlf │ │ │ │ ├── EquallySizedAutoFont.es.xlf │ │ │ │ ├── EquallySizedAutoFont.fr.xlf │ │ │ │ ├── EquallySizedAutoFont.it.xlf │ │ │ │ ├── EquallySizedAutoFont.ja.xlf │ │ │ │ ├── EquallySizedAutoFont.ko.xlf │ │ │ │ ├── EquallySizedAutoFont.pl.xlf │ │ │ │ ├── EquallySizedAutoFont.pt-BR.xlf │ │ │ │ ├── EquallySizedAutoFont.ru.xlf │ │ │ │ ├── EquallySizedAutoFont.tr.xlf │ │ │ │ ├── EquallySizedAutoFont.zh-Hans.xlf │ │ │ │ └── EquallySizedAutoFont.zh-Hant.xlf │ │ ├── LabelsFormatting │ │ │ ├── LabelsFormatting.cs │ │ │ ├── LabelsFormatting.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LabelsFormatting.cs.xlf │ │ │ │ ├── LabelsFormatting.de.xlf │ │ │ │ ├── LabelsFormatting.es.xlf │ │ │ │ ├── LabelsFormatting.fr.xlf │ │ │ │ ├── LabelsFormatting.it.xlf │ │ │ │ ├── LabelsFormatting.ja.xlf │ │ │ │ ├── LabelsFormatting.ko.xlf │ │ │ │ ├── LabelsFormatting.pl.xlf │ │ │ │ ├── LabelsFormatting.pt-BR.xlf │ │ │ │ ├── LabelsFormatting.ru.xlf │ │ │ │ ├── LabelsFormatting.tr.xlf │ │ │ │ ├── LabelsFormatting.zh-Hans.xlf │ │ │ │ └── LabelsFormatting.zh-Hant.xlf │ │ ├── LabelsKeywords │ │ │ ├── LabelsKeywords.cs │ │ │ ├── LabelsKeywords.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LabelsKeywords.cs.xlf │ │ │ │ ├── LabelsKeywords.de.xlf │ │ │ │ ├── LabelsKeywords.es.xlf │ │ │ │ ├── LabelsKeywords.fr.xlf │ │ │ │ ├── LabelsKeywords.it.xlf │ │ │ │ ├── LabelsKeywords.ja.xlf │ │ │ │ ├── LabelsKeywords.ko.xlf │ │ │ │ ├── LabelsKeywords.pl.xlf │ │ │ │ ├── LabelsKeywords.pt-BR.xlf │ │ │ │ ├── LabelsKeywords.ru.xlf │ │ │ │ ├── LabelsKeywords.tr.xlf │ │ │ │ ├── LabelsKeywords.zh-Hans.xlf │ │ │ │ └── LabelsKeywords.zh-Hant.xlf │ │ ├── LabelsNextToAxis │ │ │ ├── LabelsNextToAxis.cs │ │ │ ├── LabelsNextToAxis.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LabelsNextToAxis.cs.xlf │ │ │ │ ├── LabelsNextToAxis.de.xlf │ │ │ │ ├── LabelsNextToAxis.es.xlf │ │ │ │ ├── LabelsNextToAxis.fr.xlf │ │ │ │ ├── LabelsNextToAxis.it.xlf │ │ │ │ ├── LabelsNextToAxis.ja.xlf │ │ │ │ ├── LabelsNextToAxis.ko.xlf │ │ │ │ ├── LabelsNextToAxis.pl.xlf │ │ │ │ ├── LabelsNextToAxis.pt-BR.xlf │ │ │ │ ├── LabelsNextToAxis.ru.xlf │ │ │ │ ├── LabelsNextToAxis.tr.xlf │ │ │ │ ├── LabelsNextToAxis.zh-Hans.xlf │ │ │ │ └── LabelsNextToAxis.zh-Hant.xlf │ │ ├── LabelsTextStyle │ │ │ ├── LabelsTextStyle.cs │ │ │ ├── LabelsTextStyle.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LabelsTextStyle.cs.xlf │ │ │ │ ├── LabelsTextStyle.de.xlf │ │ │ │ ├── LabelsTextStyle.es.xlf │ │ │ │ ├── LabelsTextStyle.fr.xlf │ │ │ │ ├── LabelsTextStyle.it.xlf │ │ │ │ ├── LabelsTextStyle.ja.xlf │ │ │ │ ├── LabelsTextStyle.ko.xlf │ │ │ │ ├── LabelsTextStyle.pl.xlf │ │ │ │ ├── LabelsTextStyle.pt-BR.xlf │ │ │ │ ├── LabelsTextStyle.ru.xlf │ │ │ │ ├── LabelsTextStyle.tr.xlf │ │ │ │ ├── LabelsTextStyle.zh-Hans.xlf │ │ │ │ └── LabelsTextStyle.zh-Hant.xlf │ │ ├── MultilineLabels │ │ │ ├── MultilineLabels.cs │ │ │ ├── MultilineLabels.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── MultilineLabels.cs.xlf │ │ │ │ ├── MultilineLabels.de.xlf │ │ │ │ ├── MultilineLabels.es.xlf │ │ │ │ ├── MultilineLabels.fr.xlf │ │ │ │ ├── MultilineLabels.it.xlf │ │ │ │ ├── MultilineLabels.ja.xlf │ │ │ │ ├── MultilineLabels.ko.xlf │ │ │ │ ├── MultilineLabels.pl.xlf │ │ │ │ ├── MultilineLabels.pt-BR.xlf │ │ │ │ ├── MultilineLabels.ru.xlf │ │ │ │ ├── MultilineLabels.tr.xlf │ │ │ │ ├── MultilineLabels.zh-Hans.xlf │ │ │ │ └── MultilineLabels.zh-Hant.xlf │ │ ├── Overview │ │ │ ├── AutoXAxisLabels.PNG │ │ │ ├── Keywords.PNG │ │ │ ├── LabelInterval.bmp │ │ │ ├── Overview.htm │ │ │ ├── SmartLabels.PNG │ │ │ └── sampleConfig.xml │ │ └── Smart Labels │ │ │ ├── SmartLabels.cs │ │ │ ├── SmartLabels.resx │ │ │ ├── cscode.txt │ │ │ ├── overview.htm │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── SmartLabels.cs.xlf │ │ │ ├── SmartLabels.de.xlf │ │ │ ├── SmartLabels.es.xlf │ │ │ ├── SmartLabels.fr.xlf │ │ │ ├── SmartLabels.it.xlf │ │ │ ├── SmartLabels.ja.xlf │ │ │ ├── SmartLabels.ko.xlf │ │ │ ├── SmartLabels.pl.xlf │ │ │ ├── SmartLabels.pt-BR.xlf │ │ │ ├── SmartLabels.ru.xlf │ │ │ ├── SmartLabels.tr.xlf │ │ │ ├── SmartLabels.zh-Hans.xlf │ │ │ └── SmartLabels.zh-Hant.xlf │ ├── Legend │ │ ├── LegendAppearance │ │ │ ├── LegendAppearance.cs │ │ │ ├── LegendAppearance.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LegendAppearance.cs.xlf │ │ │ │ ├── LegendAppearance.de.xlf │ │ │ │ ├── LegendAppearance.es.xlf │ │ │ │ ├── LegendAppearance.fr.xlf │ │ │ │ ├── LegendAppearance.it.xlf │ │ │ │ ├── LegendAppearance.ja.xlf │ │ │ │ ├── LegendAppearance.ko.xlf │ │ │ │ ├── LegendAppearance.pl.xlf │ │ │ │ ├── LegendAppearance.pt-BR.xlf │ │ │ │ ├── LegendAppearance.ru.xlf │ │ │ │ ├── LegendAppearance.tr.xlf │ │ │ │ ├── LegendAppearance.zh-Hans.xlf │ │ │ │ └── LegendAppearance.zh-Hant.xlf │ │ ├── LegendCellColumns │ │ │ ├── LegendCellColumns.cs │ │ │ ├── LegendCellColumns.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LegendCellColumns.cs.xlf │ │ │ │ ├── LegendCellColumns.de.xlf │ │ │ │ ├── LegendCellColumns.es.xlf │ │ │ │ ├── LegendCellColumns.fr.xlf │ │ │ │ ├── LegendCellColumns.it.xlf │ │ │ │ ├── LegendCellColumns.ja.xlf │ │ │ │ ├── LegendCellColumns.ko.xlf │ │ │ │ ├── LegendCellColumns.pl.xlf │ │ │ │ ├── LegendCellColumns.pt-BR.xlf │ │ │ │ ├── LegendCellColumns.ru.xlf │ │ │ │ ├── LegendCellColumns.tr.xlf │ │ │ │ ├── LegendCellColumns.zh-Hans.xlf │ │ │ │ └── LegendCellColumns.zh-Hant.xlf │ │ ├── LegendCellSpan │ │ │ ├── LegendCellSpan.cs │ │ │ ├── LegendCellSpan.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LegendCellSpan.cs.xlf │ │ │ │ ├── LegendCellSpan.de.xlf │ │ │ │ ├── LegendCellSpan.es.xlf │ │ │ │ ├── LegendCellSpan.fr.xlf │ │ │ │ ├── LegendCellSpan.it.xlf │ │ │ │ ├── LegendCellSpan.ja.xlf │ │ │ │ ├── LegendCellSpan.ko.xlf │ │ │ │ ├── LegendCellSpan.pl.xlf │ │ │ │ ├── LegendCellSpan.pt-BR.xlf │ │ │ │ ├── LegendCellSpan.ru.xlf │ │ │ │ ├── LegendCellSpan.tr.xlf │ │ │ │ ├── LegendCellSpan.zh-Hans.xlf │ │ │ │ └── LegendCellSpan.zh-Hant.xlf │ │ ├── LegendCells │ │ │ ├── LegendCells.cs │ │ │ ├── LegendCells.resx │ │ │ ├── Overview.htm │ │ │ ├── cscode.txt │ │ │ ├── greensmallarrow.png │ │ │ ├── redsmallarrow.png │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LegendCells.cs.xlf │ │ │ │ ├── LegendCells.de.xlf │ │ │ │ ├── LegendCells.es.xlf │ │ │ │ ├── LegendCells.fr.xlf │ │ │ │ ├── LegendCells.it.xlf │ │ │ │ ├── LegendCells.ja.xlf │ │ │ │ ├── LegendCells.ko.xlf │ │ │ │ ├── LegendCells.pl.xlf │ │ │ │ ├── LegendCells.pt-BR.xlf │ │ │ │ ├── LegendCells.ru.xlf │ │ │ │ ├── LegendCells.tr.xlf │ │ │ │ ├── LegendCells.zh-Hans.xlf │ │ │ │ └── LegendCells.zh-Hant.xlf │ │ ├── LegendCustomItems │ │ │ ├── Flag.gif │ │ │ ├── LegendCustomItems.cs │ │ │ ├── LegendCustomItems.resx │ │ │ ├── cscode.txt │ │ │ ├── overview.htm │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LegendCustomItems.cs.xlf │ │ │ │ ├── LegendCustomItems.de.xlf │ │ │ │ ├── LegendCustomItems.es.xlf │ │ │ │ ├── LegendCustomItems.fr.xlf │ │ │ │ ├── LegendCustomItems.it.xlf │ │ │ │ ├── LegendCustomItems.ja.xlf │ │ │ │ ├── LegendCustomItems.ko.xlf │ │ │ │ ├── LegendCustomItems.pl.xlf │ │ │ │ ├── LegendCustomItems.pt-BR.xlf │ │ │ │ ├── LegendCustomItems.ru.xlf │ │ │ │ ├── LegendCustomItems.tr.xlf │ │ │ │ ├── LegendCustomItems.zh-Hans.xlf │ │ │ │ └── LegendCustomItems.zh-Hant.xlf │ │ ├── LegendCustomPosition │ │ │ ├── LegendCustomPosition.cs │ │ │ ├── LegendCustomPosition.resx │ │ │ ├── Overview.htm │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LegendCustomPosition.cs.xlf │ │ │ │ ├── LegendCustomPosition.de.xlf │ │ │ │ ├── LegendCustomPosition.es.xlf │ │ │ │ ├── LegendCustomPosition.fr.xlf │ │ │ │ ├── LegendCustomPosition.it.xlf │ │ │ │ ├── LegendCustomPosition.ja.xlf │ │ │ │ ├── LegendCustomPosition.ko.xlf │ │ │ │ ├── LegendCustomPosition.pl.xlf │ │ │ │ ├── LegendCustomPosition.pt-BR.xlf │ │ │ │ ├── LegendCustomPosition.ru.xlf │ │ │ │ ├── LegendCustomPosition.tr.xlf │ │ │ │ ├── LegendCustomPosition.zh-Hans.xlf │ │ │ │ └── LegendCustomPosition.zh-Hant.xlf │ │ ├── LegendFont │ │ │ ├── LegendFont.cs │ │ │ ├── LegendFont.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LegendFont.cs.xlf │ │ │ │ ├── LegendFont.de.xlf │ │ │ │ ├── LegendFont.es.xlf │ │ │ │ ├── LegendFont.fr.xlf │ │ │ │ ├── LegendFont.it.xlf │ │ │ │ ├── LegendFont.ja.xlf │ │ │ │ ├── LegendFont.ko.xlf │ │ │ │ ├── LegendFont.pl.xlf │ │ │ │ ├── LegendFont.pt-BR.xlf │ │ │ │ ├── LegendFont.ru.xlf │ │ │ │ ├── LegendFont.tr.xlf │ │ │ │ ├── LegendFont.zh-Hans.xlf │ │ │ │ └── LegendFont.zh-Hant.xlf │ │ ├── LegendInteractive │ │ │ ├── LegendInteractive.af.resx │ │ │ ├── LegendInteractive.cs │ │ │ ├── LegendInteractive.resx │ │ │ ├── chk_checked.png │ │ │ ├── chk_unchecked.png │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LegendInteractive.af.cs.xlf │ │ │ │ ├── LegendInteractive.af.de.xlf │ │ │ │ ├── LegendInteractive.af.es.xlf │ │ │ │ ├── LegendInteractive.af.fr.xlf │ │ │ │ ├── LegendInteractive.af.it.xlf │ │ │ │ ├── LegendInteractive.af.ja.xlf │ │ │ │ ├── LegendInteractive.af.ko.xlf │ │ │ │ ├── LegendInteractive.af.pl.xlf │ │ │ │ ├── LegendInteractive.af.pt-BR.xlf │ │ │ │ ├── LegendInteractive.af.ru.xlf │ │ │ │ ├── LegendInteractive.af.tr.xlf │ │ │ │ ├── LegendInteractive.af.zh-Hans.xlf │ │ │ │ ├── LegendInteractive.af.zh-Hant.xlf │ │ │ │ ├── LegendInteractive.cs.xlf │ │ │ │ ├── LegendInteractive.de.xlf │ │ │ │ ├── LegendInteractive.es.xlf │ │ │ │ ├── LegendInteractive.fr.xlf │ │ │ │ ├── LegendInteractive.it.xlf │ │ │ │ ├── LegendInteractive.ja.xlf │ │ │ │ ├── LegendInteractive.ko.xlf │ │ │ │ ├── LegendInteractive.pl.xlf │ │ │ │ ├── LegendInteractive.pt-BR.xlf │ │ │ │ ├── LegendInteractive.ru.xlf │ │ │ │ ├── LegendInteractive.tr.xlf │ │ │ │ ├── LegendInteractive.zh-Hans.xlf │ │ │ │ └── LegendInteractive.zh-Hant.xlf │ │ ├── LegendStyleAndPosition │ │ │ ├── LegendStylePosition.cs │ │ │ ├── LegendStylePosition.resx │ │ │ ├── Overview.htm │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LegendStylePosition.cs.xlf │ │ │ │ ├── LegendStylePosition.de.xlf │ │ │ │ ├── LegendStylePosition.es.xlf │ │ │ │ ├── LegendStylePosition.fr.xlf │ │ │ │ ├── LegendStylePosition.it.xlf │ │ │ │ ├── LegendStylePosition.ja.xlf │ │ │ │ ├── LegendStylePosition.ko.xlf │ │ │ │ ├── LegendStylePosition.pl.xlf │ │ │ │ ├── LegendStylePosition.pt-BR.xlf │ │ │ │ ├── LegendStylePosition.ru.xlf │ │ │ │ ├── LegendStylePosition.tr.xlf │ │ │ │ ├── LegendStylePosition.zh-Hans.xlf │ │ │ │ └── LegendStylePosition.zh-Hant.xlf │ │ ├── LegendTitle │ │ │ ├── LegendTitle.cs │ │ │ ├── LegendTitle.resx │ │ │ ├── Overview.htm │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LegendTitle.cs.xlf │ │ │ │ ├── LegendTitle.de.xlf │ │ │ │ ├── LegendTitle.es.xlf │ │ │ │ ├── LegendTitle.fr.xlf │ │ │ │ ├── LegendTitle.it.xlf │ │ │ │ ├── LegendTitle.ja.xlf │ │ │ │ ├── LegendTitle.ko.xlf │ │ │ │ ├── LegendTitle.pl.xlf │ │ │ │ ├── LegendTitle.pt-BR.xlf │ │ │ │ ├── LegendTitle.ru.xlf │ │ │ │ ├── LegendTitle.tr.xlf │ │ │ │ ├── LegendTitle.zh-Hans.xlf │ │ │ │ └── LegendTitle.zh-Hant.xlf │ │ ├── MultipleLegends │ │ │ ├── MultipleLegends.cs │ │ │ ├── MultipleLegends.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── MultipleLegends.cs.xlf │ │ │ │ ├── MultipleLegends.de.xlf │ │ │ │ ├── MultipleLegends.es.xlf │ │ │ │ ├── MultipleLegends.fr.xlf │ │ │ │ ├── MultipleLegends.it.xlf │ │ │ │ ├── MultipleLegends.ja.xlf │ │ │ │ ├── MultipleLegends.ko.xlf │ │ │ │ ├── MultipleLegends.pl.xlf │ │ │ │ ├── MultipleLegends.pt-BR.xlf │ │ │ │ ├── MultipleLegends.ru.xlf │ │ │ │ ├── MultipleLegends.tr.xlf │ │ │ │ ├── MultipleLegends.zh-Hans.xlf │ │ │ │ └── MultipleLegends.zh-Hant.xlf │ │ ├── MultipleLegendsWithCheckBox │ │ │ ├── MultipleLegendsWithCheckBox.cs │ │ │ ├── MultipleLegendsWithCheckBox.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.cs.xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.de.xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.es.xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.fr.xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.it.xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.ja.xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.ko.xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.pl.xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.pt-BR.xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.ru.xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.tr.xlf │ │ │ │ ├── MultipleLegendsWithCheckBox.zh-Hans.xlf │ │ │ │ └── MultipleLegendsWithCheckBox.zh-Hant.xlf │ │ └── Overview │ │ │ ├── Alignment.PNG │ │ │ ├── CustomItems.PNG │ │ │ ├── Keywords.PNG │ │ │ ├── LegendDiagram3.PNG │ │ │ ├── LegendDiagram4.PNG │ │ │ ├── LegendGradients.PNG │ │ │ ├── Overview.htm │ │ │ ├── SeriesSymbol3.PNG │ │ │ └── sampleConfig.xml │ ├── Palettes │ │ ├── Palettes.cs │ │ ├── Palettes.resx │ │ ├── cscode.txt │ │ ├── overview.htm │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ │ ├── Palettes.cs.xlf │ │ │ ├── Palettes.de.xlf │ │ │ ├── Palettes.es.xlf │ │ │ ├── Palettes.fr.xlf │ │ │ ├── Palettes.it.xlf │ │ │ ├── Palettes.ja.xlf │ │ │ ├── Palettes.ko.xlf │ │ │ ├── Palettes.pl.xlf │ │ │ ├── Palettes.pt-BR.xlf │ │ │ ├── Palettes.ru.xlf │ │ │ ├── Palettes.tr.xlf │ │ │ ├── Palettes.zh-Hans.xlf │ │ │ └── Palettes.zh-Hant.xlf │ ├── Printing │ │ ├── CustomPrinting │ │ │ ├── CustomPrinting.cs │ │ │ ├── CustomPrinting.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── CustomPrinting.cs.xlf │ │ │ │ ├── CustomPrinting.de.xlf │ │ │ │ ├── CustomPrinting.es.xlf │ │ │ │ ├── CustomPrinting.fr.xlf │ │ │ │ ├── CustomPrinting.it.xlf │ │ │ │ ├── CustomPrinting.ja.xlf │ │ │ │ ├── CustomPrinting.ko.xlf │ │ │ │ ├── CustomPrinting.pl.xlf │ │ │ │ ├── CustomPrinting.pt-BR.xlf │ │ │ │ ├── CustomPrinting.ru.xlf │ │ │ │ ├── CustomPrinting.tr.xlf │ │ │ │ ├── CustomPrinting.zh-Hans.xlf │ │ │ │ └── CustomPrinting.zh-Hant.xlf │ │ ├── MultipagePrinting │ │ │ ├── MultipagePrinting.cs │ │ │ ├── MultipagePrinting.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── MultipagePrinting.cs.xlf │ │ │ │ ├── MultipagePrinting.de.xlf │ │ │ │ ├── MultipagePrinting.es.xlf │ │ │ │ ├── MultipagePrinting.fr.xlf │ │ │ │ ├── MultipagePrinting.it.xlf │ │ │ │ ├── MultipagePrinting.ja.xlf │ │ │ │ ├── MultipagePrinting.ko.xlf │ │ │ │ ├── MultipagePrinting.pl.xlf │ │ │ │ ├── MultipagePrinting.pt-BR.xlf │ │ │ │ ├── MultipagePrinting.ru.xlf │ │ │ │ ├── MultipagePrinting.tr.xlf │ │ │ │ ├── MultipagePrinting.zh-Hans.xlf │ │ │ │ └── MultipagePrinting.zh-Hant.xlf │ │ ├── Overview │ │ │ ├── Overview.htm │ │ │ └── sampleConfig.xml │ │ ├── PrinterFriendlyCharts │ │ │ ├── PrinterFriendlyCharts.cs │ │ │ ├── PrinterFriendlyCharts.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── PrinterFriendlyCharts.cs.xlf │ │ │ │ ├── PrinterFriendlyCharts.de.xlf │ │ │ │ ├── PrinterFriendlyCharts.es.xlf │ │ │ │ ├── PrinterFriendlyCharts.fr.xlf │ │ │ │ ├── PrinterFriendlyCharts.it.xlf │ │ │ │ ├── PrinterFriendlyCharts.ja.xlf │ │ │ │ ├── PrinterFriendlyCharts.ko.xlf │ │ │ │ ├── PrinterFriendlyCharts.pl.xlf │ │ │ │ ├── PrinterFriendlyCharts.pt-BR.xlf │ │ │ │ ├── PrinterFriendlyCharts.ru.xlf │ │ │ │ ├── PrinterFriendlyCharts.tr.xlf │ │ │ │ ├── PrinterFriendlyCharts.zh-Hans.xlf │ │ │ │ └── PrinterFriendlyCharts.zh-Hant.xlf │ │ ├── PrintingAndPreviewing │ │ │ ├── PrintPreview.cs │ │ │ ├── PrintPreview.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── PrintPreview.cs.xlf │ │ │ │ ├── PrintPreview.de.xlf │ │ │ │ ├── PrintPreview.es.xlf │ │ │ │ ├── PrintPreview.fr.xlf │ │ │ │ ├── PrintPreview.it.xlf │ │ │ │ ├── PrintPreview.ja.xlf │ │ │ │ ├── PrintPreview.ko.xlf │ │ │ │ ├── PrintPreview.pl.xlf │ │ │ │ ├── PrintPreview.pt-BR.xlf │ │ │ │ ├── PrintPreview.ru.xlf │ │ │ │ ├── PrintPreview.tr.xlf │ │ │ │ ├── PrintPreview.zh-Hans.xlf │ │ │ │ └── PrintPreview.zh-Hant.xlf │ │ └── PrintingSettings │ │ │ ├── PrintingSettings.cs │ │ │ ├── PrintingSettings.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── PrintingSettings.cs.xlf │ │ │ ├── PrintingSettings.de.xlf │ │ │ ├── PrintingSettings.es.xlf │ │ │ ├── PrintingSettings.fr.xlf │ │ │ ├── PrintingSettings.it.xlf │ │ │ ├── PrintingSettings.ja.xlf │ │ │ ├── PrintingSettings.ko.xlf │ │ │ ├── PrintingSettings.pl.xlf │ │ │ ├── PrintingSettings.pt-BR.xlf │ │ │ ├── PrintingSettings.ru.xlf │ │ │ ├── PrintingSettings.tr.xlf │ │ │ ├── PrintingSettings.zh-Hans.xlf │ │ │ └── PrintingSettings.zh-Hant.xlf │ ├── SavingAndCopyingImages │ │ ├── SavingAndCopyingImages.cs │ │ ├── SavingAndCopyingImages.resx │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ │ ├── SavingAndCopyingImages.cs.xlf │ │ │ ├── SavingAndCopyingImages.de.xlf │ │ │ ├── SavingAndCopyingImages.es.xlf │ │ │ ├── SavingAndCopyingImages.fr.xlf │ │ │ ├── SavingAndCopyingImages.it.xlf │ │ │ ├── SavingAndCopyingImages.ja.xlf │ │ │ ├── SavingAndCopyingImages.ko.xlf │ │ │ ├── SavingAndCopyingImages.pl.xlf │ │ │ ├── SavingAndCopyingImages.pt-BR.xlf │ │ │ ├── SavingAndCopyingImages.ru.xlf │ │ │ ├── SavingAndCopyingImages.tr.xlf │ │ │ ├── SavingAndCopyingImages.zh-Hans.xlf │ │ │ └── SavingAndCopyingImages.zh-Hant.xlf │ ├── Serialization │ │ ├── BasicSerialization │ │ │ ├── BasicSerialization.cs │ │ │ ├── BasicSerialization.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── BasicSerialization.cs.xlf │ │ │ │ ├── BasicSerialization.de.xlf │ │ │ │ ├── BasicSerialization.es.xlf │ │ │ │ ├── BasicSerialization.fr.xlf │ │ │ │ ├── BasicSerialization.it.xlf │ │ │ │ ├── BasicSerialization.ja.xlf │ │ │ │ ├── BasicSerialization.ko.xlf │ │ │ │ ├── BasicSerialization.pl.xlf │ │ │ │ ├── BasicSerialization.pt-BR.xlf │ │ │ │ ├── BasicSerialization.ru.xlf │ │ │ │ ├── BasicSerialization.tr.xlf │ │ │ │ ├── BasicSerialization.zh-Hans.xlf │ │ │ │ └── BasicSerialization.zh-Hant.xlf │ │ ├── Overview │ │ │ ├── Overview.htm │ │ │ └── sampleConfig.xml │ │ └── Templates │ │ │ ├── SkyBlue.xml │ │ │ ├── Templates.cs │ │ │ ├── Templates.resx │ │ │ ├── WarmTones.xml │ │ │ ├── WhiteSmoke.xml │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── Templates.cs.xlf │ │ │ ├── Templates.de.xlf │ │ │ ├── Templates.es.xlf │ │ │ ├── Templates.fr.xlf │ │ │ ├── Templates.it.xlf │ │ │ ├── Templates.ja.xlf │ │ │ ├── Templates.ko.xlf │ │ │ ├── Templates.pl.xlf │ │ │ ├── Templates.pt-BR.xlf │ │ │ ├── Templates.ru.xlf │ │ │ ├── Templates.tr.xlf │ │ │ ├── Templates.zh-Hans.xlf │ │ │ └── Templates.zh-Hant.xlf │ ├── TOCNodes.xml │ └── Titles │ │ ├── ChartTitle │ │ ├── ChartTitle.cs │ │ ├── ChartTitle.resx │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ │ ├── ChartTitle.cs.xlf │ │ │ ├── ChartTitle.de.xlf │ │ │ ├── ChartTitle.es.xlf │ │ │ ├── ChartTitle.fr.xlf │ │ │ ├── ChartTitle.it.xlf │ │ │ ├── ChartTitle.ja.xlf │ │ │ ├── ChartTitle.ko.xlf │ │ │ ├── ChartTitle.pl.xlf │ │ │ ├── ChartTitle.pt-BR.xlf │ │ │ ├── ChartTitle.ru.xlf │ │ │ ├── ChartTitle.tr.xlf │ │ │ ├── ChartTitle.zh-Hans.xlf │ │ │ └── ChartTitle.zh-Hant.xlf │ │ ├── MultipleTitles │ │ ├── MultilpleTitles.cs │ │ ├── MultilpleTitles.resx │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ │ ├── MultilpleTitles.cs.xlf │ │ │ ├── MultilpleTitles.de.xlf │ │ │ ├── MultilpleTitles.es.xlf │ │ │ ├── MultilpleTitles.fr.xlf │ │ │ ├── MultilpleTitles.it.xlf │ │ │ ├── MultilpleTitles.ja.xlf │ │ │ ├── MultilpleTitles.ko.xlf │ │ │ ├── MultilpleTitles.pl.xlf │ │ │ ├── MultilpleTitles.pt-BR.xlf │ │ │ ├── MultilpleTitles.ru.xlf │ │ │ ├── MultilpleTitles.tr.xlf │ │ │ ├── MultilpleTitles.zh-Hans.xlf │ │ │ └── MultilpleTitles.zh-Hant.xlf │ │ ├── Overview │ │ ├── MultiLine.PNG │ │ ├── Overview.htm │ │ ├── TitleAppearance.PNG │ │ ├── TitleDocking.PNG │ │ └── sampleConfig.xml │ │ └── TitlePosition │ │ ├── Overview.htm │ │ ├── TitleCustomPosition.cs │ │ ├── TitleCustomPosition.resx │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ ├── TitleCustomPosition.cs.xlf │ │ ├── TitleCustomPosition.de.xlf │ │ ├── TitleCustomPosition.es.xlf │ │ ├── TitleCustomPosition.fr.xlf │ │ ├── TitleCustomPosition.it.xlf │ │ ├── TitleCustomPosition.ja.xlf │ │ ├── TitleCustomPosition.ko.xlf │ │ ├── TitleCustomPosition.pl.xlf │ │ ├── TitleCustomPosition.pt-BR.xlf │ │ ├── TitleCustomPosition.ru.xlf │ │ ├── TitleCustomPosition.tr.xlf │ │ ├── TitleCustomPosition.zh-Hans.xlf │ │ └── TitleCustomPosition.zh-Hant.xlf │ ├── ChartOverview │ ├── Overview.htm │ ├── TOCNodes.xml │ └── sampleConfig.xml │ ├── ChartSamples.csproj │ ├── ChartTypes │ ├── AreaCharts │ │ ├── 3DArea │ │ │ ├── AreaChart3D.cs │ │ │ ├── AreaChart3D.resx │ │ │ ├── cscode.txt │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AreaChart3D.cs.xlf │ │ │ │ ├── AreaChart3D.de.xlf │ │ │ │ ├── AreaChart3D.es.xlf │ │ │ │ ├── AreaChart3D.fr.xlf │ │ │ │ ├── AreaChart3D.it.xlf │ │ │ │ ├── AreaChart3D.ja.xlf │ │ │ │ ├── AreaChart3D.ko.xlf │ │ │ │ ├── AreaChart3D.pl.xlf │ │ │ │ ├── AreaChart3D.pt-BR.xlf │ │ │ │ ├── AreaChart3D.ru.xlf │ │ │ │ ├── AreaChart3D.tr.xlf │ │ │ │ ├── AreaChart3D.zh-Hans.xlf │ │ │ │ └── AreaChart3D.zh-Hant.xlf │ │ ├── Area │ │ │ ├── AreaChartType.cs │ │ │ ├── AreaChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── AreaChartType.cs.xlf │ │ │ │ ├── AreaChartType.de.xlf │ │ │ │ ├── AreaChartType.es.xlf │ │ │ │ ├── AreaChartType.fr.xlf │ │ │ │ ├── AreaChartType.it.xlf │ │ │ │ ├── AreaChartType.ja.xlf │ │ │ │ ├── AreaChartType.ko.xlf │ │ │ │ ├── AreaChartType.pl.xlf │ │ │ │ ├── AreaChartType.pt-BR.xlf │ │ │ │ ├── AreaChartType.ru.xlf │ │ │ │ ├── AreaChartType.tr.xlf │ │ │ │ ├── AreaChartType.zh-Hans.xlf │ │ │ │ └── AreaChartType.zh-Hant.xlf │ │ ├── Gallery │ │ │ ├── 2D100StackedArea.png │ │ │ ├── 2DArea.png │ │ │ ├── 2DSplineArea.png │ │ │ ├── 2DStackedArea.png │ │ │ ├── 3DArea.png │ │ │ ├── 3DSplineArea.png │ │ │ ├── AreaGallery.htm │ │ │ └── sampleConfig.xml │ │ └── sampleConfig.xml │ ├── BarColumnCharts │ │ ├── 3DBarColumn │ │ │ ├── BarColumn3D.cs │ │ │ ├── BarColumn3D.resx │ │ │ ├── cscode.txt │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── BarColumn3D.cs.xlf │ │ │ │ ├── BarColumn3D.de.xlf │ │ │ │ ├── BarColumn3D.es.xlf │ │ │ │ ├── BarColumn3D.fr.xlf │ │ │ │ ├── BarColumn3D.it.xlf │ │ │ │ ├── BarColumn3D.ja.xlf │ │ │ │ ├── BarColumn3D.ko.xlf │ │ │ │ ├── BarColumn3D.pl.xlf │ │ │ │ ├── BarColumn3D.pt-BR.xlf │ │ │ │ ├── BarColumn3D.ru.xlf │ │ │ │ ├── BarColumn3D.tr.xlf │ │ │ │ ├── BarColumn3D.zh-Hans.xlf │ │ │ │ └── BarColumn3D.zh-Hant.xlf │ │ ├── 3DCylinder │ │ │ ├── Cylinder3D.cs │ │ │ ├── Cylinder3D.resx │ │ │ ├── cscode.txt │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── Cylinder3D.cs.xlf │ │ │ │ ├── Cylinder3D.de.xlf │ │ │ │ ├── Cylinder3D.es.xlf │ │ │ │ ├── Cylinder3D.fr.xlf │ │ │ │ ├── Cylinder3D.it.xlf │ │ │ │ ├── Cylinder3D.ja.xlf │ │ │ │ ├── Cylinder3D.ko.xlf │ │ │ │ ├── Cylinder3D.pl.xlf │ │ │ │ ├── Cylinder3D.pt-BR.xlf │ │ │ │ ├── Cylinder3D.ru.xlf │ │ │ │ ├── Cylinder3D.tr.xlf │ │ │ │ ├── Cylinder3D.zh-Hans.xlf │ │ │ │ └── Cylinder3D.zh-Hant.xlf │ │ ├── BarColumn │ │ │ ├── BarColumnChartType.cs │ │ │ ├── BarColumnChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── BarColumnChartType.cs.xlf │ │ │ │ ├── BarColumnChartType.de.xlf │ │ │ │ ├── BarColumnChartType.es.xlf │ │ │ │ ├── BarColumnChartType.fr.xlf │ │ │ │ ├── BarColumnChartType.it.xlf │ │ │ │ ├── BarColumnChartType.ja.xlf │ │ │ │ ├── BarColumnChartType.ko.xlf │ │ │ │ ├── BarColumnChartType.pl.xlf │ │ │ │ ├── BarColumnChartType.pt-BR.xlf │ │ │ │ ├── BarColumnChartType.ru.xlf │ │ │ │ ├── BarColumnChartType.tr.xlf │ │ │ │ ├── BarColumnChartType.zh-Hans.xlf │ │ │ │ └── BarColumnChartType.zh-Hant.xlf │ │ ├── Gallery │ │ │ ├── 2DBar.png │ │ │ ├── 2DColumn.png │ │ │ ├── 3D100StackedBar.png │ │ │ ├── 3DBar.png │ │ │ ├── 3DColumn.png │ │ │ ├── 3DStackedBar.png │ │ │ └── BarColumnGallery.htm │ │ ├── Stacked │ │ │ ├── StackedChartType.cs │ │ │ ├── StackedChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── StackedChartType.cs.xlf │ │ │ │ ├── StackedChartType.de.xlf │ │ │ │ ├── StackedChartType.es.xlf │ │ │ │ ├── StackedChartType.fr.xlf │ │ │ │ ├── StackedChartType.it.xlf │ │ │ │ ├── StackedChartType.ja.xlf │ │ │ │ ├── StackedChartType.ko.xlf │ │ │ │ ├── StackedChartType.pl.xlf │ │ │ │ ├── StackedChartType.pt-BR.xlf │ │ │ │ ├── StackedChartType.ru.xlf │ │ │ │ ├── StackedChartType.tr.xlf │ │ │ │ ├── StackedChartType.zh-Hans.xlf │ │ │ │ └── StackedChartType.zh-Hant.xlf │ │ └── sampleConfig.xml │ ├── CircularCharts │ │ ├── Gallery │ │ │ ├── 2DPolar.png │ │ │ ├── 2DPolarMarker.png │ │ │ ├── 2DRadarArea.png │ │ │ ├── 2DRadarMarker.png │ │ │ ├── 3DPolar.png │ │ │ ├── 3DRadarArea.png │ │ │ ├── CircularGallery.htm │ │ │ └── sampleConfig.xml │ │ ├── Polar │ │ │ ├── PolarChartType.cs │ │ │ ├── PolarChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── PolarChartType.cs.xlf │ │ │ │ ├── PolarChartType.de.xlf │ │ │ │ ├── PolarChartType.es.xlf │ │ │ │ ├── PolarChartType.fr.xlf │ │ │ │ ├── PolarChartType.it.xlf │ │ │ │ ├── PolarChartType.ja.xlf │ │ │ │ ├── PolarChartType.ko.xlf │ │ │ │ ├── PolarChartType.pl.xlf │ │ │ │ ├── PolarChartType.pt-BR.xlf │ │ │ │ ├── PolarChartType.ru.xlf │ │ │ │ ├── PolarChartType.tr.xlf │ │ │ │ ├── PolarChartType.zh-Hans.xlf │ │ │ │ └── PolarChartType.zh-Hant.xlf │ │ ├── Radar │ │ │ ├── RadarChartType.cs │ │ │ ├── RadarChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── RadarChartType.cs.xlf │ │ │ │ ├── RadarChartType.de.xlf │ │ │ │ ├── RadarChartType.es.xlf │ │ │ │ ├── RadarChartType.fr.xlf │ │ │ │ ├── RadarChartType.it.xlf │ │ │ │ ├── RadarChartType.ja.xlf │ │ │ │ ├── RadarChartType.ko.xlf │ │ │ │ ├── RadarChartType.pl.xlf │ │ │ │ ├── RadarChartType.pt-BR.xlf │ │ │ │ ├── RadarChartType.ru.xlf │ │ │ │ ├── RadarChartType.tr.xlf │ │ │ │ ├── RadarChartType.zh-Hans.xlf │ │ │ │ └── RadarChartType.zh-Hant.xlf │ │ └── sampleConfig.xml │ ├── CombinationalCharts │ │ ├── Combinatorial │ │ │ ├── CombinatorialChartType.cs │ │ │ ├── CombinatorialChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── CombinatorialChartType.cs.xlf │ │ │ │ ├── CombinatorialChartType.de.xlf │ │ │ │ ├── CombinatorialChartType.es.xlf │ │ │ │ ├── CombinatorialChartType.fr.xlf │ │ │ │ ├── CombinatorialChartType.it.xlf │ │ │ │ ├── CombinatorialChartType.ja.xlf │ │ │ │ ├── CombinatorialChartType.ko.xlf │ │ │ │ ├── CombinatorialChartType.pl.xlf │ │ │ │ ├── CombinatorialChartType.pt-BR.xlf │ │ │ │ ├── CombinatorialChartType.ru.xlf │ │ │ │ ├── CombinatorialChartType.tr.xlf │ │ │ │ ├── CombinatorialChartType.zh-Hans.xlf │ │ │ │ └── CombinatorialChartType.zh-Hant.xlf │ │ ├── Gallery │ │ │ ├── ColumnArea.png │ │ │ ├── CombinationGallery.htm │ │ │ ├── LineArea.png │ │ │ ├── Pareto.png │ │ │ ├── StockArea.png │ │ │ └── sampleConfig.xml │ │ ├── Pareto │ │ │ ├── ParetoChartType.cs │ │ │ ├── ParetoChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── ParetoChartType.cs.xlf │ │ │ │ ├── ParetoChartType.de.xlf │ │ │ │ ├── ParetoChartType.es.xlf │ │ │ │ ├── ParetoChartType.fr.xlf │ │ │ │ ├── ParetoChartType.it.xlf │ │ │ │ ├── ParetoChartType.ja.xlf │ │ │ │ ├── ParetoChartType.ko.xlf │ │ │ │ ├── ParetoChartType.pl.xlf │ │ │ │ ├── ParetoChartType.pt-BR.xlf │ │ │ │ ├── ParetoChartType.ru.xlf │ │ │ │ ├── ParetoChartType.tr.xlf │ │ │ │ ├── ParetoChartType.zh-Hans.xlf │ │ │ │ └── ParetoChartType.zh-Hant.xlf │ │ └── sampleConfig.xml │ ├── DataDistributionCharts │ │ ├── BoxPlot │ │ │ ├── BoxPlotChartType.cs │ │ │ ├── BoxPlotChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── BoxPlotChartType.cs.xlf │ │ │ │ ├── BoxPlotChartType.de.xlf │ │ │ │ ├── BoxPlotChartType.es.xlf │ │ │ │ ├── BoxPlotChartType.fr.xlf │ │ │ │ ├── BoxPlotChartType.it.xlf │ │ │ │ ├── BoxPlotChartType.ja.xlf │ │ │ │ ├── BoxPlotChartType.ko.xlf │ │ │ │ ├── BoxPlotChartType.pl.xlf │ │ │ │ ├── BoxPlotChartType.pt-BR.xlf │ │ │ │ ├── BoxPlotChartType.ru.xlf │ │ │ │ ├── BoxPlotChartType.tr.xlf │ │ │ │ ├── BoxPlotChartType.zh-Hans.xlf │ │ │ │ └── BoxPlotChartType.zh-Hant.xlf │ │ └── Histogram │ │ │ ├── Histogram.cs │ │ │ ├── Histogram.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── Histogram.cs.xlf │ │ │ ├── Histogram.de.xlf │ │ │ ├── Histogram.es.xlf │ │ │ ├── Histogram.fr.xlf │ │ │ ├── Histogram.it.xlf │ │ │ ├── Histogram.ja.xlf │ │ │ ├── Histogram.ko.xlf │ │ │ ├── Histogram.pl.xlf │ │ │ ├── Histogram.pt-BR.xlf │ │ │ ├── Histogram.ru.xlf │ │ │ ├── Histogram.tr.xlf │ │ │ ├── Histogram.zh-Hans.xlf │ │ │ └── Histogram.zh-Hant.xlf │ ├── ErrorBar │ │ ├── ErrorBarChartType.cs │ │ ├── ErrorBarChartType.resx │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ │ ├── ErrorBarChartType.cs.xlf │ │ │ ├── ErrorBarChartType.de.xlf │ │ │ ├── ErrorBarChartType.es.xlf │ │ │ ├── ErrorBarChartType.fr.xlf │ │ │ ├── ErrorBarChartType.it.xlf │ │ │ ├── ErrorBarChartType.ja.xlf │ │ │ ├── ErrorBarChartType.ko.xlf │ │ │ ├── ErrorBarChartType.pl.xlf │ │ │ ├── ErrorBarChartType.pt-BR.xlf │ │ │ ├── ErrorBarChartType.ru.xlf │ │ │ ├── ErrorBarChartType.tr.xlf │ │ │ ├── ErrorBarChartType.zh-Hans.xlf │ │ │ └── ErrorBarChartType.zh-Hant.xlf │ ├── FinancialCharts │ │ ├── Gallery │ │ │ ├── Bollinger1.png │ │ │ ├── Bollinger2.png │ │ │ ├── CandleStick.png │ │ │ ├── FinancialGallery.htm │ │ │ ├── Forecasting.png │ │ │ ├── PriceIndicators.png │ │ │ ├── Stock.png │ │ │ └── sampleConfig.xml │ │ └── Stock │ │ │ ├── DividentLegend.bmp │ │ │ ├── DividentMarker.bmp │ │ │ ├── FinancialChartType.cs │ │ │ ├── FinancialChartType.resx │ │ │ ├── SplitLegend.bmp │ │ │ ├── SplitMarker.bmp │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── FinancialChartType.cs.xlf │ │ │ ├── FinancialChartType.de.xlf │ │ │ ├── FinancialChartType.es.xlf │ │ │ ├── FinancialChartType.fr.xlf │ │ │ ├── FinancialChartType.it.xlf │ │ │ ├── FinancialChartType.ja.xlf │ │ │ ├── FinancialChartType.ko.xlf │ │ │ ├── FinancialChartType.pl.xlf │ │ │ ├── FinancialChartType.pt-BR.xlf │ │ │ ├── FinancialChartType.ru.xlf │ │ │ ├── FinancialChartType.tr.xlf │ │ │ ├── FinancialChartType.zh-Hans.xlf │ │ │ └── FinancialChartType.zh-Hant.xlf │ ├── LineCharts │ │ ├── 3DLine │ │ │ ├── LineCurves3D.cs │ │ │ ├── LineCurves3D.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── LineCurves3D.cs.xlf │ │ │ │ ├── LineCurves3D.de.xlf │ │ │ │ ├── LineCurves3D.es.xlf │ │ │ │ ├── LineCurves3D.fr.xlf │ │ │ │ ├── LineCurves3D.it.xlf │ │ │ │ ├── LineCurves3D.ja.xlf │ │ │ │ ├── LineCurves3D.ko.xlf │ │ │ │ ├── LineCurves3D.pl.xlf │ │ │ │ ├── LineCurves3D.pt-BR.xlf │ │ │ │ ├── LineCurves3D.ru.xlf │ │ │ │ ├── LineCurves3D.tr.xlf │ │ │ │ ├── LineCurves3D.zh-Hans.xlf │ │ │ │ └── LineCurves3D.zh-Hant.xlf │ │ ├── FastLine │ │ │ ├── FastLineChartType.cs │ │ │ ├── FastLineChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── FastLineChartType.cs.xlf │ │ │ │ ├── FastLineChartType.de.xlf │ │ │ │ ├── FastLineChartType.es.xlf │ │ │ │ ├── FastLineChartType.fr.xlf │ │ │ │ ├── FastLineChartType.it.xlf │ │ │ │ ├── FastLineChartType.ja.xlf │ │ │ │ ├── FastLineChartType.ko.xlf │ │ │ │ ├── FastLineChartType.pl.xlf │ │ │ │ ├── FastLineChartType.pt-BR.xlf │ │ │ │ ├── FastLineChartType.ru.xlf │ │ │ │ ├── FastLineChartType.tr.xlf │ │ │ │ ├── FastLineChartType.zh-Hans.xlf │ │ │ │ └── FastLineChartType.zh-Hant.xlf │ │ ├── Gallery │ │ │ ├── 2DFastLine.png │ │ │ ├── 2DLine.png │ │ │ ├── 2DLineMarkers.png │ │ │ ├── 2DSpline.png │ │ │ ├── 2DStepLine.png │ │ │ ├── 3DSpline.png │ │ │ ├── LineGallery.htm │ │ │ └── sampleConfig.xml │ │ └── LineCurves │ │ │ ├── LineCurvesChartType.cs │ │ │ ├── LineCurvesChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── LineCurvesChartType.cs.xlf │ │ │ ├── LineCurvesChartType.de.xlf │ │ │ ├── LineCurvesChartType.es.xlf │ │ │ ├── LineCurvesChartType.fr.xlf │ │ │ ├── LineCurvesChartType.it.xlf │ │ │ ├── LineCurvesChartType.ja.xlf │ │ │ ├── LineCurvesChartType.ko.xlf │ │ │ ├── LineCurvesChartType.pl.xlf │ │ │ ├── LineCurvesChartType.pt-BR.xlf │ │ │ ├── LineCurvesChartType.ru.xlf │ │ │ ├── LineCurvesChartType.tr.xlf │ │ │ ├── LineCurvesChartType.zh-Hans.xlf │ │ │ └── LineCurvesChartType.zh-Hant.xlf │ ├── PieDoughnutCharts │ │ ├── 3DPie │ │ │ ├── PieChart3D.cs │ │ │ ├── PieChart3D.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── PieChart3D.cs.xlf │ │ │ │ ├── PieChart3D.de.xlf │ │ │ │ ├── PieChart3D.es.xlf │ │ │ │ ├── PieChart3D.fr.xlf │ │ │ │ ├── PieChart3D.it.xlf │ │ │ │ ├── PieChart3D.ja.xlf │ │ │ │ ├── PieChart3D.ko.xlf │ │ │ │ ├── PieChart3D.pl.xlf │ │ │ │ ├── PieChart3D.pt-BR.xlf │ │ │ │ ├── PieChart3D.ru.xlf │ │ │ │ ├── PieChart3D.tr.xlf │ │ │ │ ├── PieChart3D.zh-Hans.xlf │ │ │ │ └── PieChart3D.zh-Hant.xlf │ │ ├── Gallery │ │ │ ├── 2DBeltPieChart.png │ │ │ ├── 2DDoughnut.png │ │ │ ├── 2DDoughnut2.png │ │ │ ├── 2DSupplementalPie.png │ │ │ ├── 3DPie2.png │ │ │ ├── 3DPie3.png │ │ │ ├── 3DPieInPie.png │ │ │ ├── 3DStepPie.png │ │ │ ├── PieDoughnutGallery.htm │ │ │ └── sampleConfig.xml │ │ ├── PieCollected │ │ │ ├── PieCollected.cs │ │ │ ├── PieCollected.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── PieCollected.cs.xlf │ │ │ │ ├── PieCollected.de.xlf │ │ │ │ ├── PieCollected.es.xlf │ │ │ │ ├── PieCollected.fr.xlf │ │ │ │ ├── PieCollected.it.xlf │ │ │ │ ├── PieCollected.ja.xlf │ │ │ │ ├── PieCollected.ko.xlf │ │ │ │ ├── PieCollected.pl.xlf │ │ │ │ ├── PieCollected.pt-BR.xlf │ │ │ │ ├── PieCollected.ru.xlf │ │ │ │ ├── PieCollected.tr.xlf │ │ │ │ ├── PieCollected.zh-Hans.xlf │ │ │ │ └── PieCollected.zh-Hant.xlf │ │ └── PieCollectedData │ │ │ ├── PieCollectedData.cs │ │ │ ├── PieCollectedData.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── PieCollectedData.cs.xlf │ │ │ ├── PieCollectedData.de.xlf │ │ │ ├── PieCollectedData.es.xlf │ │ │ ├── PieCollectedData.fr.xlf │ │ │ ├── PieCollectedData.it.xlf │ │ │ ├── PieCollectedData.ja.xlf │ │ │ ├── PieCollectedData.ko.xlf │ │ │ ├── PieCollectedData.pl.xlf │ │ │ ├── PieCollectedData.pt-BR.xlf │ │ │ ├── PieCollectedData.ru.xlf │ │ │ ├── PieCollectedData.tr.xlf │ │ │ ├── PieCollectedData.zh-Hans.xlf │ │ │ └── PieCollectedData.zh-Hant.xlf │ ├── PointCharts │ │ ├── Bubble │ │ │ ├── BubbleChartType.cs │ │ │ ├── BubbleChartType.resx │ │ │ ├── Face.bmp │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── BubbleChartType.cs.xlf │ │ │ │ ├── BubbleChartType.de.xlf │ │ │ │ ├── BubbleChartType.es.xlf │ │ │ │ ├── BubbleChartType.fr.xlf │ │ │ │ ├── BubbleChartType.it.xlf │ │ │ │ ├── BubbleChartType.ja.xlf │ │ │ │ ├── BubbleChartType.ko.xlf │ │ │ │ ├── BubbleChartType.pl.xlf │ │ │ │ ├── BubbleChartType.pt-BR.xlf │ │ │ │ ├── BubbleChartType.ru.xlf │ │ │ │ ├── BubbleChartType.tr.xlf │ │ │ │ ├── BubbleChartType.zh-Hans.xlf │ │ │ │ └── BubbleChartType.zh-Hant.xlf │ │ ├── Gallery │ │ │ ├── 2DBubble.png │ │ │ ├── 2DPoint.png │ │ │ ├── 2DPointCustom.png │ │ │ ├── 2DPointLabels.png │ │ │ ├── 2DPointShapes.png │ │ │ ├── 3DBubble.png │ │ │ ├── FastPoint.png │ │ │ ├── PointBubbleGallery.htm │ │ │ └── sampleConfig.xml │ │ └── Point │ │ │ ├── PointChartType.cs │ │ │ ├── PointChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── PointChartType.cs.xlf │ │ │ ├── PointChartType.de.xlf │ │ │ ├── PointChartType.es.xlf │ │ │ ├── PointChartType.fr.xlf │ │ │ ├── PointChartType.it.xlf │ │ │ ├── PointChartType.ja.xlf │ │ │ ├── PointChartType.ko.xlf │ │ │ ├── PointChartType.pl.xlf │ │ │ ├── PointChartType.pt-BR.xlf │ │ │ ├── PointChartType.ru.xlf │ │ │ ├── PointChartType.tr.xlf │ │ │ ├── PointChartType.zh-Hans.xlf │ │ │ └── PointChartType.zh-Hant.xlf │ ├── PriceRangeFinancialCharts │ │ ├── Gallery │ │ │ ├── 2DKagi.png │ │ │ ├── 2DPointFigure.png │ │ │ ├── 2DRenko.png │ │ │ ├── 2DThreeLine.png │ │ │ ├── 3DThreeLine.png │ │ │ ├── AdvancedFinanceGallery.htm │ │ │ └── sampleConfig.xml │ │ ├── Kagi │ │ │ ├── KagiChartType.cs │ │ │ ├── KagiChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── KagiChartType.cs.xlf │ │ │ │ ├── KagiChartType.de.xlf │ │ │ │ ├── KagiChartType.es.xlf │ │ │ │ ├── KagiChartType.fr.xlf │ │ │ │ ├── KagiChartType.it.xlf │ │ │ │ ├── KagiChartType.ja.xlf │ │ │ │ ├── KagiChartType.ko.xlf │ │ │ │ ├── KagiChartType.pl.xlf │ │ │ │ ├── KagiChartType.pt-BR.xlf │ │ │ │ ├── KagiChartType.ru.xlf │ │ │ │ ├── KagiChartType.tr.xlf │ │ │ │ ├── KagiChartType.zh-Hans.xlf │ │ │ │ └── KagiChartType.zh-Hant.xlf │ │ ├── PointAndFigure │ │ │ ├── PointAndFigureChartType.cs │ │ │ ├── PointAndFigureChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── PointAndFigureChartType.cs.xlf │ │ │ │ ├── PointAndFigureChartType.de.xlf │ │ │ │ ├── PointAndFigureChartType.es.xlf │ │ │ │ ├── PointAndFigureChartType.fr.xlf │ │ │ │ ├── PointAndFigureChartType.it.xlf │ │ │ │ ├── PointAndFigureChartType.ja.xlf │ │ │ │ ├── PointAndFigureChartType.ko.xlf │ │ │ │ ├── PointAndFigureChartType.pl.xlf │ │ │ │ ├── PointAndFigureChartType.pt-BR.xlf │ │ │ │ ├── PointAndFigureChartType.ru.xlf │ │ │ │ ├── PointAndFigureChartType.tr.xlf │ │ │ │ ├── PointAndFigureChartType.zh-Hans.xlf │ │ │ │ └── PointAndFigureChartType.zh-Hant.xlf │ │ ├── Renko │ │ │ ├── RenkoChartType.cs │ │ │ ├── RenkoChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── RenkoChartType.cs.xlf │ │ │ │ ├── RenkoChartType.de.xlf │ │ │ │ ├── RenkoChartType.es.xlf │ │ │ │ ├── RenkoChartType.fr.xlf │ │ │ │ ├── RenkoChartType.it.xlf │ │ │ │ ├── RenkoChartType.ja.xlf │ │ │ │ ├── RenkoChartType.ko.xlf │ │ │ │ ├── RenkoChartType.pl.xlf │ │ │ │ ├── RenkoChartType.pt-BR.xlf │ │ │ │ ├── RenkoChartType.ru.xlf │ │ │ │ ├── RenkoChartType.tr.xlf │ │ │ │ ├── RenkoChartType.zh-Hans.xlf │ │ │ │ └── RenkoChartType.zh-Hant.xlf │ │ └── ThreeLineBreak │ │ │ ├── ThreeLineBreakChartType.cs │ │ │ ├── ThreeLineBreakChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── ThreeLineBreakChartType.cs.xlf │ │ │ ├── ThreeLineBreakChartType.de.xlf │ │ │ ├── ThreeLineBreakChartType.es.xlf │ │ │ ├── ThreeLineBreakChartType.fr.xlf │ │ │ ├── ThreeLineBreakChartType.it.xlf │ │ │ ├── ThreeLineBreakChartType.ja.xlf │ │ │ ├── ThreeLineBreakChartType.ko.xlf │ │ │ ├── ThreeLineBreakChartType.pl.xlf │ │ │ ├── ThreeLineBreakChartType.pt-BR.xlf │ │ │ ├── ThreeLineBreakChartType.ru.xlf │ │ │ ├── ThreeLineBreakChartType.tr.xlf │ │ │ ├── ThreeLineBreakChartType.zh-Hans.xlf │ │ │ └── ThreeLineBreakChartType.zh-Hant.xlf │ ├── PyramidFunnelCharts │ │ ├── Funnel │ │ │ ├── FunnelChartType.cs │ │ │ ├── FunnelChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── FunnelChartType.cs.xlf │ │ │ │ ├── FunnelChartType.de.xlf │ │ │ │ ├── FunnelChartType.es.xlf │ │ │ │ ├── FunnelChartType.fr.xlf │ │ │ │ ├── FunnelChartType.it.xlf │ │ │ │ ├── FunnelChartType.ja.xlf │ │ │ │ ├── FunnelChartType.ko.xlf │ │ │ │ ├── FunnelChartType.pl.xlf │ │ │ │ ├── FunnelChartType.pt-BR.xlf │ │ │ │ ├── FunnelChartType.ru.xlf │ │ │ │ ├── FunnelChartType.tr.xlf │ │ │ │ ├── FunnelChartType.zh-Hans.xlf │ │ │ │ └── FunnelChartType.zh-Hant.xlf │ │ ├── Gallery │ │ │ ├── 2DPyramid.png │ │ │ ├── 3DFunnel.png │ │ │ ├── 3DFunnelGap.png │ │ │ ├── 3DFunnelWidth.png │ │ │ ├── 3DPyramid.png │ │ │ ├── 3DPyramidGap.png │ │ │ ├── AccumulationGallery.htm │ │ │ └── sampleConfig.xml │ │ └── Pyramid │ │ │ ├── Overview.htm │ │ │ ├── PyramidChartType.cs │ │ │ ├── PyramidChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── PyramidChartType.cs.xlf │ │ │ ├── PyramidChartType.de.xlf │ │ │ ├── PyramidChartType.es.xlf │ │ │ ├── PyramidChartType.fr.xlf │ │ │ ├── PyramidChartType.it.xlf │ │ │ ├── PyramidChartType.ja.xlf │ │ │ ├── PyramidChartType.ko.xlf │ │ │ ├── PyramidChartType.pl.xlf │ │ │ ├── PyramidChartType.pt-BR.xlf │ │ │ ├── PyramidChartType.ru.xlf │ │ │ ├── PyramidChartType.tr.xlf │ │ │ ├── PyramidChartType.zh-Hans.xlf │ │ │ └── PyramidChartType.zh-Hant.xlf │ ├── RangeCharts │ │ ├── 3DRange │ │ │ ├── Range3D.cs │ │ │ ├── Range3D.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── Range3D.cs.xlf │ │ │ │ ├── Range3D.de.xlf │ │ │ │ ├── Range3D.es.xlf │ │ │ │ ├── Range3D.fr.xlf │ │ │ │ ├── Range3D.it.xlf │ │ │ │ ├── Range3D.ja.xlf │ │ │ │ ├── Range3D.ko.xlf │ │ │ │ ├── Range3D.pl.xlf │ │ │ │ ├── Range3D.pt-BR.xlf │ │ │ │ ├── Range3D.ru.xlf │ │ │ │ ├── Range3D.tr.xlf │ │ │ │ ├── Range3D.zh-Hans.xlf │ │ │ │ └── Range3D.zh-Hant.xlf │ │ ├── 3DRangeBar │ │ │ ├── RangeBar3D.cs │ │ │ ├── RangeBar3D.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── RangeBar3D.cs.xlf │ │ │ │ ├── RangeBar3D.de.xlf │ │ │ │ ├── RangeBar3D.es.xlf │ │ │ │ ├── RangeBar3D.fr.xlf │ │ │ │ ├── RangeBar3D.it.xlf │ │ │ │ ├── RangeBar3D.ja.xlf │ │ │ │ ├── RangeBar3D.ko.xlf │ │ │ │ ├── RangeBar3D.pl.xlf │ │ │ │ ├── RangeBar3D.pt-BR.xlf │ │ │ │ ├── RangeBar3D.ru.xlf │ │ │ │ ├── RangeBar3D.tr.xlf │ │ │ │ ├── RangeBar3D.zh-Hans.xlf │ │ │ │ └── RangeBar3D.zh-Hant.xlf │ │ ├── Gallery │ │ │ ├── 2DRange.png │ │ │ ├── 2DRangeBar.png │ │ │ ├── 2DRangeColumn.png │ │ │ ├── 2DSplineRange.png │ │ │ ├── 3DRange.png │ │ │ ├── 3DSplineRange.png │ │ │ ├── RangeGallery.htm │ │ │ └── sampleConfig.xml │ │ ├── Range │ │ │ ├── RangeChartType.cs │ │ │ ├── RangeChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── RangeChartType.cs.xlf │ │ │ │ ├── RangeChartType.de.xlf │ │ │ │ ├── RangeChartType.es.xlf │ │ │ │ ├── RangeChartType.fr.xlf │ │ │ │ ├── RangeChartType.it.xlf │ │ │ │ ├── RangeChartType.ja.xlf │ │ │ │ ├── RangeChartType.ko.xlf │ │ │ │ ├── RangeChartType.pl.xlf │ │ │ │ ├── RangeChartType.pt-BR.xlf │ │ │ │ ├── RangeChartType.ru.xlf │ │ │ │ ├── RangeChartType.tr.xlf │ │ │ │ ├── RangeChartType.zh-Hans.xlf │ │ │ │ └── RangeChartType.zh-Hant.xlf │ │ ├── RangeBar │ │ │ ├── RangeBarChartType.cs │ │ │ ├── RangeBarChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ │ ├── RangeBarChartType.cs.xlf │ │ │ │ ├── RangeBarChartType.de.xlf │ │ │ │ ├── RangeBarChartType.es.xlf │ │ │ │ ├── RangeBarChartType.fr.xlf │ │ │ │ ├── RangeBarChartType.it.xlf │ │ │ │ ├── RangeBarChartType.ja.xlf │ │ │ │ ├── RangeBarChartType.ko.xlf │ │ │ │ ├── RangeBarChartType.pl.xlf │ │ │ │ ├── RangeBarChartType.pt-BR.xlf │ │ │ │ ├── RangeBarChartType.ru.xlf │ │ │ │ ├── RangeBarChartType.tr.xlf │ │ │ │ ├── RangeBarChartType.zh-Hans.xlf │ │ │ │ └── RangeBarChartType.zh-Hant.xlf │ │ └── RangeColumn │ │ │ ├── RangeColumnChartType.cs │ │ │ ├── RangeColumnChartType.resx │ │ │ ├── cscode.txt │ │ │ ├── sampleConfig.xml │ │ │ ├── vbcode.txt │ │ │ └── xlf │ │ │ ├── RangeColumnChartType.cs.xlf │ │ │ ├── RangeColumnChartType.de.xlf │ │ │ ├── RangeColumnChartType.es.xlf │ │ │ ├── RangeColumnChartType.fr.xlf │ │ │ ├── RangeColumnChartType.it.xlf │ │ │ ├── RangeColumnChartType.ja.xlf │ │ │ ├── RangeColumnChartType.ko.xlf │ │ │ ├── RangeColumnChartType.pl.xlf │ │ │ ├── RangeColumnChartType.pt-BR.xlf │ │ │ ├── RangeColumnChartType.ru.xlf │ │ │ ├── RangeColumnChartType.tr.xlf │ │ │ ├── RangeColumnChartType.zh-Hans.xlf │ │ │ └── RangeColumnChartType.zh-Hant.xlf │ └── TOCNodes.xml │ ├── GettingStarted │ ├── BasicPopulatingData │ │ ├── BasicPopulatingData.cs │ │ ├── BasicPopulatingData.resx │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ │ ├── BasicPopulatingData.cs.xlf │ │ │ ├── BasicPopulatingData.de.xlf │ │ │ ├── BasicPopulatingData.es.xlf │ │ │ ├── BasicPopulatingData.fr.xlf │ │ │ ├── BasicPopulatingData.it.xlf │ │ │ ├── BasicPopulatingData.ja.xlf │ │ │ ├── BasicPopulatingData.ko.xlf │ │ │ ├── BasicPopulatingData.pl.xlf │ │ │ ├── BasicPopulatingData.pt-BR.xlf │ │ │ ├── BasicPopulatingData.ru.xlf │ │ │ ├── BasicPopulatingData.tr.xlf │ │ │ ├── BasicPopulatingData.zh-Hans.xlf │ │ │ └── BasicPopulatingData.zh-Hant.xlf │ ├── ChartElements │ │ ├── ChartElementsFinished.png │ │ ├── Overview.htm │ │ └── sampleConfig.xml │ ├── CoordinateSystem │ │ ├── CoordinateSystem.bmp │ │ ├── Overview.htm │ │ └── sampleConfig.xml │ ├── CreatingFirstChart │ │ ├── CollectionEditor.jpg │ │ ├── Overview.htm │ │ ├── dragIcon3.jpg │ │ └── sampleConfig.xml │ ├── DynamicChartCreation │ │ ├── DynamicChartCreation.cs │ │ ├── DynamicChartCreation.resx │ │ ├── cscode.txt │ │ ├── sampleConfig.xml │ │ ├── vbcode.txt │ │ └── xlf │ │ │ ├── DynamicChartCreation.cs.xlf │ │ │ ├── DynamicChartCreation.de.xlf │ │ │ ├── DynamicChartCreation.es.xlf │ │ │ ├── DynamicChartCreation.fr.xlf │ │ │ ├── DynamicChartCreation.it.xlf │ │ │ ├── DynamicChartCreation.ja.xlf │ │ │ ├── DynamicChartCreation.ko.xlf │ │ │ ├── DynamicChartCreation.pl.xlf │ │ │ ├── DynamicChartCreation.pt-BR.xlf │ │ │ ├── DynamicChartCreation.ru.xlf │ │ │ ├── DynamicChartCreation.tr.xlf │ │ │ ├── DynamicChartCreation.zh-Hans.xlf │ │ │ └── DynamicChartCreation.zh-Hant.xlf │ ├── SeriesAndPoints │ │ ├── CandleStick.png │ │ ├── Overview.htm │ │ ├── Series_Point_BasicHighlight.PNG │ │ ├── Series_Point_BasicSplineChart.PNG │ │ └── sampleConfig.xml │ ├── TOCNodes.xml │ ├── Text │ │ ├── Overview.htm │ │ ├── sampleConfig.xml │ │ └── text_elements.PNG │ └── sampleConfig.xml │ ├── Images │ ├── FDist.GIF │ ├── FooterMiddle.bmp │ ├── GradientChartArea.png │ ├── HeaderLeft.bmp │ ├── HeaderMiddle.bmp │ ├── HeaderRight.bmp │ ├── MaxValueMarker.bmp │ ├── Normal.GIF │ ├── TDist.GIF │ ├── Thumbs.db │ ├── doc.bmp │ ├── face.bmp │ └── money.png │ ├── Program.cs │ ├── SampleMain │ ├── MainForm.cs │ ├── MainForm.resx │ ├── SourceCodeToRtf.cs │ ├── TabPageButton.cs │ ├── TabPageButton.resx │ ├── VerticalTabControl.cs │ ├── VerticalTabControl.resx │ └── xlf │ │ ├── MainForm.cs.xlf │ │ ├── MainForm.de.xlf │ │ ├── MainForm.es.xlf │ │ ├── MainForm.fr.xlf │ │ ├── MainForm.it.xlf │ │ ├── MainForm.ja.xlf │ │ ├── MainForm.ko.xlf │ │ ├── MainForm.pl.xlf │ │ ├── MainForm.pt-BR.xlf │ │ ├── MainForm.ru.xlf │ │ ├── MainForm.tr.xlf │ │ ├── MainForm.zh-Hans.xlf │ │ ├── MainForm.zh-Hant.xlf │ │ ├── TabPageButton.cs.xlf │ │ ├── TabPageButton.de.xlf │ │ ├── TabPageButton.es.xlf │ │ ├── TabPageButton.fr.xlf │ │ ├── TabPageButton.it.xlf │ │ ├── TabPageButton.ja.xlf │ │ ├── TabPageButton.ko.xlf │ │ ├── TabPageButton.pl.xlf │ │ ├── TabPageButton.pt-BR.xlf │ │ ├── TabPageButton.ru.xlf │ │ ├── TabPageButton.tr.xlf │ │ ├── TabPageButton.zh-Hans.xlf │ │ ├── TabPageButton.zh-Hant.xlf │ │ ├── VerticalTabControl.cs.xlf │ │ ├── VerticalTabControl.de.xlf │ │ ├── VerticalTabControl.es.xlf │ │ ├── VerticalTabControl.fr.xlf │ │ ├── VerticalTabControl.it.xlf │ │ ├── VerticalTabControl.ja.xlf │ │ ├── VerticalTabControl.ko.xlf │ │ ├── VerticalTabControl.pl.xlf │ │ ├── VerticalTabControl.pt-BR.xlf │ │ ├── VerticalTabControl.ru.xlf │ │ ├── VerticalTabControl.tr.xlf │ │ ├── VerticalTabControl.zh-Hans.xlf │ │ └── VerticalTabControl.zh-Hant.xlf │ ├── Styles.css │ ├── Utilities │ ├── ActivityLegend │ │ └── ActivityLegend.cs │ ├── ChartDataTableHelper │ │ ├── ChartDataTableHelper.cs │ │ └── ChartDataTableHelper.vb │ ├── DigitalFilter │ │ ├── FFT.cs │ │ ├── FFT.vb │ │ ├── FIRFilters.cs │ │ └── FIRFilters.vb │ ├── HistogramChartHelper │ │ ├── HistogramChartHelper.cs │ │ └── HistogramChartHelper.vb │ ├── PieCollectedDataHelper │ │ ├── PieCollectedDataHelper.cs │ │ └── PieCollectedDataHelper.vb │ ├── RangeSpliceChartHelper │ │ ├── LineUtils.cs │ │ ├── RangePolygon.cs │ │ ├── RangeSpliceChartHelper.cs │ │ └── RangeSpliceChartHelperException.cs │ ├── SampleMain │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── SourceCodeToRtf.cs │ │ ├── TabPageButton.cs │ │ ├── TabPageButton.resx │ │ ├── VerticalTabControl.cs │ │ ├── VerticalTabControl.resx │ │ └── xlf │ │ │ ├── MainForm.cs.xlf │ │ │ ├── MainForm.de.xlf │ │ │ ├── MainForm.es.xlf │ │ │ ├── MainForm.fr.xlf │ │ │ ├── MainForm.it.xlf │ │ │ ├── MainForm.ja.xlf │ │ │ ├── MainForm.ko.xlf │ │ │ ├── MainForm.pl.xlf │ │ │ ├── MainForm.pt-BR.xlf │ │ │ ├── MainForm.ru.xlf │ │ │ ├── MainForm.tr.xlf │ │ │ ├── MainForm.zh-Hans.xlf │ │ │ ├── MainForm.zh-Hant.xlf │ │ │ ├── TabPageButton.cs.xlf │ │ │ ├── TabPageButton.de.xlf │ │ │ ├── TabPageButton.es.xlf │ │ │ ├── TabPageButton.fr.xlf │ │ │ ├── TabPageButton.it.xlf │ │ │ ├── TabPageButton.ja.xlf │ │ │ ├── TabPageButton.ko.xlf │ │ │ ├── TabPageButton.pl.xlf │ │ │ ├── TabPageButton.pt-BR.xlf │ │ │ ├── TabPageButton.ru.xlf │ │ │ ├── TabPageButton.tr.xlf │ │ │ ├── TabPageButton.zh-Hans.xlf │ │ │ ├── TabPageButton.zh-Hant.xlf │ │ │ ├── VerticalTabControl.cs.xlf │ │ │ ├── VerticalTabControl.de.xlf │ │ │ ├── VerticalTabControl.es.xlf │ │ │ ├── VerticalTabControl.fr.xlf │ │ │ ├── VerticalTabControl.it.xlf │ │ │ ├── VerticalTabControl.ja.xlf │ │ │ ├── VerticalTabControl.ko.xlf │ │ │ ├── VerticalTabControl.pl.xlf │ │ │ ├── VerticalTabControl.pt-BR.xlf │ │ │ ├── VerticalTabControl.ru.xlf │ │ │ ├── VerticalTabControl.tr.xlf │ │ │ ├── VerticalTabControl.zh-Hans.xlf │ │ │ └── VerticalTabControl.zh-Hant.xlf │ ├── SixSigma │ │ ├── SixSigma.cs │ │ └── SixSigma.vb │ └── SpikeRemoval │ │ └── SpikeRemoval.cs │ ├── config.xml │ ├── cs_langDef.xml │ └── vbnet_langDef.xml └── src └── System.Windows.Forms.DataVisualization ├── Annotation ├── AnnotationBase.cs ├── AnnotationCollection.cs ├── AnnotationDesign.cs ├── ArrowAnnotation.cs ├── CalloutAnnotation.cs ├── GroupAnnotation.cs ├── ImageAnnotation.cs ├── LineAnnotation.cs ├── PolygonAnnotation.cs ├── RectangleAnnotation.cs └── TextAnnotation.cs ├── Borders3D ├── Borders3D.cs ├── EmbedBorder.cs └── EmbossBorder.cs ├── ChartTypes ├── AreaChart.cs ├── BarChart.cs ├── BoxPlotChart.cs ├── BubbleChart.cs ├── ChartTypeRegistry.cs ├── ColumnChart.cs ├── DoughnutChart.cs ├── ErrorBarChart.cs ├── FastLineChart.cs ├── FastPointChart.cs ├── FunnelChart.cs ├── KagiChart.cs ├── LineChart.cs ├── PieChart.cs ├── PointAndFigureChart.cs ├── PointChart.cs ├── PolarChart.cs ├── RadarChart.cs ├── RangeChart.cs ├── RenkoChart.cs ├── StackedAreaChart.cs ├── StackedBarChart.cs ├── StackedColumnChart.cs ├── StepLineChart.cs ├── StockChart.cs └── ThreeLineBreakChart.cs ├── ChartWin.csproj ├── ChartWin.sln ├── ChartWinControl.cs ├── Common ├── SR.cs ├── SR.resx ├── SRCategoryAttribute.cs ├── SRDescriptionAttribute.cs └── xlf │ ├── SR.cs.xlf │ ├── SR.de.xlf │ ├── SR.es.xlf │ ├── SR.fr.xlf │ ├── SR.it.xlf │ ├── SR.ja.xlf │ ├── SR.ko.xlf │ ├── SR.pl.xlf │ ├── SR.pt-BR.xlf │ ├── SR.ru.xlf │ ├── SR.tr.xlf │ ├── SR.zh-Hans.xlf │ └── SR.zh-Hant.xlf ├── Converters ├── AnnotationConverters.cs ├── AxesArrayConverter.cs ├── AxisConverters.cs ├── CustomAttributesConverters.cs ├── DataManagerConverters.cs ├── ElementPositionConverter.cs └── LegendConverters.cs ├── DataManager ├── DataManager.cs ├── DataPoint.cs └── DataSeries.cs ├── Design ├── AnnotationCollectionEditor.cs ├── AreaDesigner.cs ├── AxesArrayDesigner.cs ├── ColorPaletteEditor.cs ├── DataManagerEditors.cs ├── FlagsEnumEditor.cs ├── FxCopExclusionsByDesign.cs ├── GradientEditor.cs ├── HatchStyleEditor.cs ├── ImageMapDesign.cs ├── KeywordEditor.cs ├── KeywordsStringEditor.cs ├── LegendDesigner.cs ├── MarkerStyleEditor.cs ├── WinChartDesigner.cs └── WinChartDesignerSerializer.cs ├── Formulas ├── FormulaHelpers.cs ├── FormulaRegistry.cs ├── GeneralFormulas.cs ├── Oscillator.cs ├── PriceIndicators.cs ├── StatisticalAnalysis.cs ├── TechGeneralIndicators.cs ├── TimeSeriesAndForecasting.cs └── VolumeIndicator.cs ├── FxCopExclusionsByDesign.cs ├── General ├── Axis.cs ├── AxisLabels.cs ├── AxisScale.cs ├── AxisScaleBreaks.cs ├── AxisScaleSegments.cs ├── AxisScrollBar.cs ├── AxisScrollZoom.cs ├── BaseClasses.cs ├── BaseCollections.cs ├── BaseInterfaces.cs ├── Chart.cs ├── ChartArea.cs ├── ChartArea3D.cs ├── ChartAreaAxes.cs ├── ChartAreaCircular.cs ├── ChartAreaCollection.cs ├── ChartAreaCursor.cs ├── ChartElement.cs ├── ChartGraphics.cs ├── ChartGraphics3D.cs ├── ChartRenderingEngine.cs ├── ChartSerializer.cs ├── CommonElements.cs ├── Constants.cs ├── DataManipulator.cs ├── FormulaData.cs ├── GdiGraphics.cs ├── GridTickMarks.cs ├── IChartRenderingEngine.cs ├── Label.cs ├── Legend.cs ├── LegendColumns.cs ├── Matrix3D.cs ├── NamedImageCollection.cs ├── Selection.cs ├── SmartLabels.cs ├── Statistics.cs ├── StripLine.cs ├── SubAxis.cs └── Title.cs ├── Properties └── InternalsVisibleTo.cs ├── Resources ├── ChartControl.bmp ├── ChartControl.ico ├── Design.resx └── xlf │ ├── Design.cs.xlf │ ├── Design.de.xlf │ ├── Design.es.xlf │ ├── Design.fr.xlf │ ├── Design.it.xlf │ ├── Design.ja.xlf │ ├── Design.ko.xlf │ ├── Design.pl.xlf │ ├── Design.pt-BR.xlf │ ├── Design.ru.xlf │ ├── Design.tr.xlf │ ├── Design.zh-Hans.xlf │ └── Design.zh-Hant.xlf ├── Utilities ├── AccessibleObject.cs ├── ColorPalette.cs ├── CustomAttributesRegistry.cs ├── ElementPosition.cs ├── ImageLoader.cs ├── KeywordsRegistry.cs ├── Printing.cs ├── ValueConverter.cs └── XmlSerializer.cs └── xlf ├── SR.cs.xlf ├── SR.de.xlf ├── SR.es.xlf ├── SR.fr.xlf ├── SR.it.xlf ├── SR.ja.xlf ├── SR.ko.xlf ├── SR.pl.xlf ├── SR.pt-BR.xlf ├── SR.ru.xlf ├── SR.tr.xlf ├── SR.zh-Hans.xlf └── SR.zh-Hant.xlf /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | This project has adopted the code of conduct defined by the Contributor Covenant 4 | to clarify expected behavior in our community. 5 | 6 | For more information, see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct). 7 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Lines starting with '#' are comments. 2 | # Each line is a file pattern followed by one or more owners. 3 | 4 | # These owners will be the default owners for everything in the repo, 5 | # and will automatically be added as reviewers to all pull requests. 6 | * @dotnet/dotnet-winforms -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /build.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -restore -build -bl %*" 3 | exit /b %ErrorLevel% 4 | -------------------------------------------------------------------------------- /eng/cibuild.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0\common\Build.ps1""" -ci -preparemachine %*" 3 | -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0Build.ps1""" -restore -build -test -sign -pack -publish -ci %*" -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.jessie: -------------------------------------------------------------------------------- 1 | # Debian (sid) # UNSTABLE 2 | deb http://ftp.debian.org/debian/ sid main contrib non-free 3 | deb-src http://ftp.debian.org/debian/ sid main contrib non-free 4 | -------------------------------------------------------------------------------- /eng/common/cross/armel/sources.list.jessie: -------------------------------------------------------------------------------- 1 | # Debian (jessie) # Stable 2 | deb http://ftp.debian.org/debian/ jessie main contrib non-free 3 | deb-src http://ftp.debian.org/debian/ jessie main contrib non-free 4 | -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | powershell -NoProfile -NoLogo -ExecutionPolicy ByPass -command "& """%~dp0init-tools-native.ps1""" %*" 3 | exit /b %ErrorLevel% -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /eng/common/templates/steps/run-on-unix.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | agentOs: '' 3 | steps: [] 4 | 5 | steps: 6 | - ${{ if ne(parameters.agentOs, 'Windows_NT') }}: 7 | - ${{ parameters.steps }} 8 | -------------------------------------------------------------------------------- /eng/common/templates/steps/run-on-windows.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | agentOs: '' 3 | steps: [] 4 | 5 | steps: 6 | - ${{ if eq(parameters.agentOs, 'Windows_NT') }}: 7 | - ${{ parameters.steps }} 8 | -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "tools": { 3 | "dotnet": "3.0.100-preview4-011144", 4 | "vs": { 5 | "version": "16.0" 6 | } 7 | }, 8 | "sdk": { 9 | "version": "3.0.100-preview4-011144" 10 | }, 11 | "msbuild-sdks": { 12 | "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19154.3" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /sample-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample-screenshot.png -------------------------------------------------------------------------------- /sample/ChartSamples/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/App.ico -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/AntiAliasingSample/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set Antialiasing mode 5 | Chart1.AntiAliasing = AntiAliasing.All; 6 | Chart1.TextAntiAliasingQuality = TextAntiAliasingQuality.High; 7 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/AntiAliasingSample/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set Antialiasing mode 5 | Chart1.AntiAliasing = AntiAliasing.All 6 | Chart1.TextAntiAliasingQuality = TextAntiAliasingQuality.High 7 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/ChartAppearance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartAppearance/Appearance/ChartAppearance.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/Flag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartAppearance/Appearance/Flag.gif -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/xlf/ChartAppearance.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/xlf/ChartAppearance.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/xlf/ChartAppearance.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/xlf/ChartAppearance.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/xlf/ChartAppearance.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/xlf/ChartAppearance.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/xlf/ChartAppearance.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/xlf/ChartAppearance.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/xlf/ChartAppearance.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Appearance/xlf/ChartAppearance.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/Borders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartAppearance/Borders/Borders.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/TOCNodes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Border Skins 5 | Borders, Appearance, Skins, Gradient, Hatch 6 | 7 | 8 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.pt-BR.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.zh-Hans.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/Borders/xlf/Borders.zh-Hant.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/TOCNodes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Appearance 5 | 6 | 7 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/UsingGaps3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartAppearance/UsingGaps3D/UsingGaps3D.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/xlf/UsingGaps3D.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/xlf/UsingGaps3D.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/xlf/UsingGaps3D.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/xlf/UsingGaps3D.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/xlf/UsingGaps3D.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/xlf/UsingGaps3D.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/xlf/UsingGaps3D.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/xlf/UsingGaps3D.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/xlf/UsingGaps3D.pt-BR.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/xlf/UsingGaps3D.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingGaps3D/xlf/UsingGaps3D.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartAppearance/UsingPerspectives/UsingPerspectives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartAppearance/UsingPerspectives/UsingPerspectives.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Annotations/AnnotationEditing/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Enable the text editing of the annotation object 5 | Chart1.Annotations["ElipseAnnotation"].AllowTextEditing = true; 6 | 7 | // Show or Hide the annotation object 8 | Chart1.Annotations["ElipseAnnotation"].Visible = true; 9 | 10 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Annotations/AnnotationEditing/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Enable the text editing of the annotation object 5 | Chart1.Annotations("ElipseAnnotation").AllowTextEditing = True 6 | 7 | ' Show or Hide the annotation object 8 | Chart1.Annotations("ElipseAnnotation").Visible = True 9 | 10 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Annotations/Overview/Anchoring.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Annotations/Overview/Anchoring.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Annotations/Overview/SmartLabel.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Annotations/Overview/SmartLabel.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set axis title 5 | chart1.ChartAreas["Default"].AxisX.Title = "Chart Axis"; 6 | 7 | // Set Title font 8 | chart1.ChartAreas["Default"].AxisX.TitleFont = new Font("Times New Roman",12, FontStyle.Bold); 9 | 10 | // Set Title color 11 | chart1.ChartAreas["Default"].AxisX.TitleForeColor = Color.Red; 12 | 13 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set axis title 5 | Chart1.ChartAreas("Default").AxisX.Title = "Chart Axis" 6 | 7 | ' Set Title font 8 | Chart1.ChartAreas("Default").AxisX.TitleFont = New Font("Times New Roman", 12, FontStyle.Bold) 9 | 10 | ' Set Title color 11 | Chart1.ChartAreas("Default").AxisX.TitleForeColor = Color.Red 12 | 13 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/xlf/AxisTitle.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/xlf/AxisTitle.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/xlf/AxisTitle.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/xlf/AxisTitle.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/xlf/AxisTitle.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/xlf/AxisTitle.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/xlf/AxisTitle.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/xlf/AxisTitle.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/xlf/AxisTitle.pt-BR.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/xlf/AxisTitle.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Axis Title/xlf/AxisTitle.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set Series chart type 5 | chart1.Series["Default"].ChartType = SeriesChartType.Area; 6 | 7 | // Disable X axis margin 8 | chart1.ChartAreas["Default"].AxisX.IsMarginVisible = false; 9 | 10 | ... 11 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set Series chart type 5 | Chart1.Series("Default").ChartType = SeriesChartType.Area; 6 | 7 | ' Disable X axis margin 8 | Chart1.ChartAreas("Default").AxisX.IsMarginVisible = false 9 | 10 | ... 11 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/xlf/AxisMargins.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/xlf/AxisMargins.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/xlf/AxisMargins.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/xlf/AxisMargins.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/xlf/AxisMargins.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/xlf/AxisMargins.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/xlf/AxisMargins.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/xlf/AxisMargins.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/xlf/AxisMargins.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisMargins/xlf/AxisMargins.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.pt-BR.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.zh-Hans.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/AxisScale/xlf/AxisScale.zh-Hant.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/InterlacedStrips/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Enable interlaced strip lines 5 | Chart1.ChartAreas["Default"].AxisY.IsInterlaced = true; 6 | 7 | // Set Strips Color 8 | Chart1.ChartAreas["Default"].AxisY.InterlacedColor = Color.FromArgb(120, Color.Red); 9 | 10 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/InterlacedStrips/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Enable interlaced strip lines 5 | Chart1.ChartAreas("Default").AxisY.IsInterlaced = true 6 | 7 | ' Set Strips Color 8 | Chart1.ChartAreas("Default").AxisY.InterlacedColor = Color.FromArgb(120, Color.Red) 9 | 10 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Logarithmic Scale/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set Logarithmic scale 5 | chart1.ChartAreas("Default").AxisY.IsLogarithmic = True 6 | 7 | ' Set logarithmic base 8 | chart1.ChartAreas(0).AxisY.LogarithmBase = Math.E 9 | 10 | ' Set Minor interval 11 | chart1.ChartAreas(0).AxisY.MinorGrid.Interval = 0 12 | chart1.ChartAreas(0).AxisY.MinorTickMark.Interval = 0 13 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Overview/DataView.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Axis/Overview/DataView.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Overview/Interlaced.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Axis/Overview/Interlaced.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Overview/LabelRows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Axis/Overview/LabelRows.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/Overview/PrimarySecondaryAxes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Axis/Overview/PrimarySecondaryAxes.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/StripLines/xlf/StripLines.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/StripLines/xlf/StripLines.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/StripLines/xlf/StripLines.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/StripLines/xlf/StripLines.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/StripLines/xlf/StripLines.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/StripLines/xlf/StripLines.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/StripLines/xlf/StripLines.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/StripLines/xlf/StripLines.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/StripLines/xlf/StripLines.pt-BR.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/StripLines/xlf/StripLines.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Axis/StripLines/xlf/StripLines.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/AlignmentTypes/AlignTypeInnerPlotPosition.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/AlignmentTypes/AlignTypeInnerPlotPosition.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/AlignmentTypes/AlignTypePosition.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/AlignmentTypes/AlignTypePosition.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/AlignmentTypes/AreaAlignTypeAll.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/AlignmentTypes/AreaAlignTypeAll.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/AlignmentTypes/AreaAlignTypeAxesViews.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/AlignmentTypes/AreaAlignTypeAxesViews.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/AlignmentTypes/AreaAlignTypeCursor.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/AlignmentTypes/AreaAlignTypeCursor.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Appearance/xlf/Appearance.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Appearance/xlf/Appearance.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Appearance/xlf/Appearance.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Appearance/xlf/Appearance.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Appearance/xlf/Appearance.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Appearance/xlf/Appearance.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Appearance/xlf/Appearance.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Appearance/xlf/Appearance.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Appearance/xlf/Appearance.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Appearance/xlf/Appearance.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Overview/2DChart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/Overview/2DChart.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Overview/3DChart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/Overview/3DChart.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Overview/Alignment.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/Overview/Alignment.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Overview/GradientColor.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/Overview/GradientColor.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Overview/NoAlignment.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/Overview/NoAlignment.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Overview/PieWithinPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/Overview/PieWithinPoint.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Series and Chart Areas/SeriesAndChartAreas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/ChartArea/Series and Chart Areas/SeriesAndChartAreas.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Series and Chart Areas/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Attach the first series to a chart area. 5 | chart1.Series["Series1"].ChartArea = "Default"; 6 | 7 | // Attach the second series to a chart area. 8 | chart1.Series["Series2"].ChartArea = "Chart Area 2"; 9 | 10 | // Remove series from chart areas. 11 | chart1.Series["Series3"].ChartArea = ""; 12 | 13 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Series and Chart Areas/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Attach the first series to a chart area. 5 | Chart1.Series("Series1").ChartArea = "Default" 6 | 7 | ' Attach the second series to a chart area. 8 | Chart1.Series("Series2").ChartArea = "Chart Area 2" 9 | 10 | ' Remove series from chart areas. 11 | Chart1.Series("Series3").ChartArea = "" 12 | 13 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.pt-BR.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.zh-Hans.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/ChartArea/Z Order/xlf/ZOrder.zh-Hant.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Customizations/Overview/CustomImage.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Customizations/Overview/CustomImage.JPG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/HidingSeries/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Hide series "Series 1" 5 | chart1.Series["Series 1"].Enabled = false; 6 | 7 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/HidingSeries/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Hide series "Series 1" 5 | Chart1.Series("Series 1").Enabled = false 6 | 7 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/IndexedX/IndexedX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/DataSeries/IndexedX/IndexedX.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/IndexedX/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Plot series' points using their index instead of their X values 5 | chart1.Series["Default"].IsXValueIndexed = true; 6 | 7 | ... 8 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/IndexedX/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Plot series points using their index instead of their X values 5 | Chart1.Series("Default").IsXValueIndexed = true 6 | 7 | ... 8 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/Overview/BubbleChart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/DataSeries/Overview/BubbleChart.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/Overview/CustomAttributes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/DataSeries/Overview/CustomAttributes.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/Overview/SeriesAndPointsColor.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/DataSeries/Overview/SeriesAndPointsColor.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/Overview/SeriesAppearance.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/DataSeries/Overview/SeriesAppearance.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/SecondaryAxis/SecondaryAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/DataSeries/SecondaryAxis/SecondaryAxis.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/SecondaryAxis/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set series axis type 5 | chart1.Series["Series 1"].XAxisType = AxisType.Primary; 6 | chart1.Series["Series 1"].YAxisType = AxisType.Secondary; 7 | chart1.Series["Series 2"].XAxisType = AxisType.Secondary; 8 | chart1.Series["Series 2"].YAxisType = AxisType.Primary; 9 | 10 | ... 11 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/SecondaryAxis/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set series axis type 5 | Chart1.Series("Series 1").XAxisType = AxisType.Primary 6 | Chart1.Series("Series 1").YAxisType = AxisType.Secondary 7 | Chart1.Series("Series 2").XAxisType = AxisType.Secondary 8 | Chart1.Series("Series 2").YAxisType = AxisType.Primary 9 | 10 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/SeriesAppearance/Series Appearance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/DataSeries/SeriesAppearance/Series Appearance.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/UsingLabels/UsingLabels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/DataSeries/UsingLabels/UsingLabels.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/DataSeries/UsingMarkers/UsingMarkers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/DataSeries/UsingMarkers/UsingMarkers.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Events/ScrollBarEvents/PageScrolling.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Events/ScrollBarEvents/PageScrolling.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Events/ScrollBarEvents/Zoom2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Events/ScrollBarEvents/Zoom2.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Events/ScrollBarEvents/Zoom3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Events/ScrollBarEvents/Zoom3.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/Cursors/CursorAxis/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set cursor axis type 5 | chart1.ChartAreas["Default"].CursorX.AxisType = AxisType.Primary; 6 | chart1.ChartAreas["Default"].CursorY.AxisType = AxisType.Secondary; 7 | 8 | 9 | ... 10 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/Cursors/CursorAxis/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set cursor axis type 5 | Chart1.ChartAreas("Default").CursorX.AxisType = AxisType.Primary 6 | Chart1.ChartAreas("Default").CursorY.AxisType = AxisType.Secondary 7 | 8 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/Cursors/CursorInterval/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set cursor interval properties 5 | chart1.ChartAreas["Default"].CursorX.Interval = 1; 6 | chart1.ChartAreas["Default"].CursorX.IntervalType = DateTimeIntervalType.Days; 7 | chart1.ChartAreas["Default"].CursorY.Interval = 2; 8 | 9 | ... 10 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/Cursors/CursorInterval/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set cursor interval properties 5 | Chart1.ChartAreas("Default").CursorX.Interval = 1 6 | Chart1.ChartAreas("Default").CursorX.IntervalType = DateTimeIntervalType.Days 7 | Chart1.ChartAreas("Default").CursorY.Interval = 2 8 | 9 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/Overview/Cursors.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/InteractiveCharting/Overview/Cursors.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/Overview/DrilldownFinalChart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/InteractiveCharting/Overview/DrilldownFinalChart.jpg -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/Overview/DrilldownInitialChart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/InteractiveCharting/Overview/DrilldownInitialChart.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/Overview/TooltipWithKeyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/InteractiveCharting/Overview/TooltipWithKeyword.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/ZoomingScrolling/SmallScrollSize/Zoom3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/InteractiveCharting/ZoomingScrolling/SmallScrollSize/Zoom3.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/ZoomingScrolling/SmallScrollSize/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Use automatic small scrolling size, with minimum of 2 5 | chart1.ChartAreas["Default"].AxisX.ScaleView.SmallScrollSize = double.NaN; 6 | chart1.ChartAreas["Default"].AxisX.ScaleView.SmallScrollMinSize = 2; 7 | 8 | ... 9 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/ZoomingScrolling/SmallScrollSize/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Use automatic small scrolling size, with minimum of 2 5 | chart1.ChartAreas("Default").AxisX.ScaleView.SmallScrollSize = Double.NaN 6 | chart1.ChartAreas("Default").AxisX.ScaleView.SmallScrollMinSize = 2 7 | 8 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/ZoomingScrolling/ZoomingExtents/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set the minimum view size to 2 weeks 5 | chart1.ChartAreas["Default"].AxisX.ScaleView.MinSize = 2; 6 | chart1.ChartAreas["Default"].AxisX.ScaleView.MinSizeType = DateTimeIntervalType.Weeks; 7 | 8 | ... 9 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/InteractiveCharting/ZoomingScrolling/ZoomingExtents/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set the minimum view size to 2 weeks 5 | chart1.ChartAreas("Default").AxisX.ScaleView.MinSize = 2 6 | chart1.ChartAreas("Default").AxisX.ScaleView.MinSizeType = DateTimeIntervalType.Weeks 7 | 8 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/AxisVarLabelsInterval/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set interval of X axis to zero, which represents an "Auto" value. 5 | chart1.ChartAreas["Default"].AxisX.Interval = 0; 6 | 7 | // Use variable count algorithm to generate labels. 8 | chart1.ChartAreas["Default"].AxisX.IntervalAutoMode = IntervalAutoMode.VariableCount; 9 | 10 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/AxisVarLabelsInterval/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set interval of X axis to zero, which represents an "Auto" value. 5 | chart1.ChartAreas("Default").AxisX.Interval = 0 6 | 7 | ' Use variable count algorithm to generate labels. 8 | chart1.ChartAreas("Default").AxisX.IntervalAutoMode = IntervalAutoMode.VariableCount 9 | 10 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/EquallySizedAutoFitFont/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Equally sized auto-fit font for all axes 5 | Chart1.ChartAreas["Default"].IsSameFontSizeForAllAxes = true; 6 | 7 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/EquallySizedAutoFitFont/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting.Chart 2 | ... 3 | 4 | ' Equally sized auto-fit font for all axes 5 | Chart1.ChartAreas("Default").IsSameFontSizeForAllAxes = true 6 | 7 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/LabelsKeywords/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set axis labels 5 | Chart1.Series["Series1"].AxisLabel = "Month: #VALX{MMM}\nDay: #VALX{dd}"; 6 | 7 | // Set series point's labels. On the first line we display 8 | // the first Y value, and on the second line we display the X value. 9 | Chart1.Series["Series1"].Label = "Y = #VALY\nX = #VALX"; 10 | 11 | ... 12 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/LabelsTextStyle/LabelsTextStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Labels/LabelsTextStyle/LabelsTextStyle.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Overview/AutoXAxisLabels.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Labels/Overview/AutoXAxisLabels.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Overview/Keywords.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Labels/Overview/Keywords.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Overview/LabelInterval.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Labels/Overview/LabelInterval.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Overview/SmartLabels.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Labels/Overview/SmartLabels.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Smart Labels/xlf/SmartLabels.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Smart Labels/xlf/SmartLabels.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Smart Labels/xlf/SmartLabels.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Smart Labels/xlf/SmartLabels.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Smart Labels/xlf/SmartLabels.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Smart Labels/xlf/SmartLabels.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Smart Labels/xlf/SmartLabels.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Smart Labels/xlf/SmartLabels.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Smart Labels/xlf/SmartLabels.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Labels/Smart Labels/xlf/SmartLabels.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendCells/greensmallarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/LegendCells/greensmallarrow.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendCells/redsmallarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/LegendCells/redsmallarrow.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendCustomItems/Flag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/LegendCustomItems/Flag.gif -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendFont/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set Title font 5 | chart1.Legends["Default"].Font = new Font("Times New Roman",12, FontStyle.Bold); 6 | 7 | // Set Title color 8 | chart1.Legends["Default"].FontColorCombo = Color.Red; 9 | 10 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendFont/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set Title font 5 | Chart1.Legends("Default").Font = New Font("Times New Roman", 12, FontStyle.Bold) 6 | 7 | ' Set Title color 8 | Chart1.Legends("Default").FontColorCombo = Color.Red 9 | 10 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendInteractive/chk_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/LegendInteractive/chk_checked.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendInteractive/chk_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/LegendInteractive/chk_unchecked.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendTitle/xlf/LegendTitle.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendTitle/xlf/LegendTitle.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendTitle/xlf/LegendTitle.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendTitle/xlf/LegendTitle.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendTitle/xlf/LegendTitle.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendTitle/xlf/LegendTitle.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendTitle/xlf/LegendTitle.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendTitle/xlf/LegendTitle.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/LegendTitle/xlf/LegendTitle.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/MultipleLegends/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Add the second legend 5 | Chart1.Legends.Add(new Legend("Second")); 6 | 7 | // Associate the last three series to the new legend 8 | Chart1.Series["Series 3"].Legend = "Second"; 9 | Chart1.Series["Series 4"].Legend = "Second"; 10 | Chart1.Series["Series 5"].Legend = "Second"; 11 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/MultipleLegends/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Add the second legend 5 | Chart1.Legends.Add(New Legend("Second")) 6 | 7 | ' Associate the last three series to the new legend 8 | Chart1.Series("Series 3").Legend = "Second" 9 | Chart1.Series("Series 4").Legend = "Second" 10 | Chart1.Series("Series 5").Legend = "Second" 11 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/Overview/Alignment.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/Overview/Alignment.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/Overview/CustomItems.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/Overview/CustomItems.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/Overview/Keywords.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/Overview/Keywords.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/Overview/LegendDiagram3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/Overview/LegendDiagram3.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/Overview/LegendDiagram4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/Overview/LegendDiagram4.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/Overview/LegendGradients.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/Overview/LegendGradients.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Legend/Overview/SeriesSymbol3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Legend/Overview/SeriesSymbol3.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/cscode.txt: -------------------------------------------------------------------------------- 1 | 2 | using System.Windows.Forms.DataVisualization.Charting 3 | ... 4 | 5 | // Standard palette 6 | chart2.Palette = ChartColorPalette.BrightPastel; 7 | 8 | // Use a custom palette 9 | Color[] colorSet = new Color[4] { Color.Red, Color.Blue, Color.Green, Color.Purple }; 10 | chart2.PaletteCustomColors = colorSet; 11 | chart2.Palette = ChartColorPalette.None; 12 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/vbcode.txt: -------------------------------------------------------------------------------- 1 | 2 | Imports System.Windows.Forms.DataVisualization.Charting 3 | ... 4 | 5 | ' Standard palette 6 | chart2.Palette = ChartColorPalette.BrightPastel 7 | 8 | ' Use a custom palette 9 | Dim colorSet(4) As Color = {Color.Red, Color.Blue, Color.Green, Color.Purple } 10 | chart2.PaletteCustomColors = colorSet 11 | chart2.Palette = ChartColorPalette.None 12 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.pt-BR.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.zh-Hans.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Palettes/xlf/Palettes.zh-Hant.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Printing/PrintingAndPreviewing/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Show Page Setup dialog 5 | chart1.Printing.PageSetup(); 6 | 7 | // Print preview chart 8 | chart1.Printing.PrintPreview(); 9 | 10 | // Print chart (without Printer dialog) 11 | chart1.Printing.Print(false); 12 | 13 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Printing/PrintingAndPreviewing/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Show Page Setup dialog 5 | chart1.Printing.PageSetup() 6 | 7 | ' Print preview chart 8 | chart1.Printing.PrintPreview() 9 | 10 | ' Print chart (without Printer dialog) 11 | chart1.Printing.Print(False) 12 | 13 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/ChartTitle/xlf/ChartTitle.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/ChartTitle/xlf/ChartTitle.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/ChartTitle/xlf/ChartTitle.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/ChartTitle/xlf/ChartTitle.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/ChartTitle/xlf/ChartTitle.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/ChartTitle/xlf/ChartTitle.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/ChartTitle/xlf/ChartTitle.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/ChartTitle/xlf/ChartTitle.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/ChartTitle/xlf/ChartTitle.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/ChartTitle/xlf/ChartTitle.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/MultipleTitles/MultilpleTitles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Titles/MultipleTitles/MultilpleTitles.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/Overview/MultiLine.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Titles/Overview/MultiLine.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/Overview/TitleAppearance.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Titles/Overview/TitleAppearance.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/Overview/TitleDocking.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Titles/Overview/TitleDocking.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/ChartFeatures/Titles/TitlePosition/Overview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartFeatures/Titles/TitlePosition/Overview.htm -------------------------------------------------------------------------------- /sample/ChartSamples/ChartOverview/TOCNodes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Overview 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/3DArea/xlf/AreaChart3D.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/3DArea/xlf/AreaChart3D.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/3DArea/xlf/AreaChart3D.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/3DArea/xlf/AreaChart3D.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/3DArea/xlf/AreaChart3D.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/3DArea/xlf/AreaChart3D.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/3DArea/xlf/AreaChart3D.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/3DArea/xlf/AreaChart3D.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/3DArea/xlf/AreaChart3D.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/3DArea/xlf/AreaChart3D.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/Gallery/2D100StackedArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/AreaCharts/Gallery/2D100StackedArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/Gallery/2DArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/AreaCharts/Gallery/2DArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/Gallery/2DSplineArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/AreaCharts/Gallery/2DSplineArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/Gallery/2DStackedArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/AreaCharts/Gallery/2DStackedArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/Gallery/3DArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/AreaCharts/Gallery/3DArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/AreaCharts/Gallery/3DSplineArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/AreaCharts/Gallery/3DSplineArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/BarColumnCharts/3DBarColumn/BarColumn3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/BarColumnCharts/3DBarColumn/BarColumn3D.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/BarColumnCharts/3DCylinder/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set Bar chart type 5 | Chart1.Series["Default"].ChartType = SeriesChartType.Bar; 6 | 7 | // Enable 3D charts 8 | Chart1.ChartAreas["Default"].Area3DStyle.Enable3D = true; 9 | 10 | // Set Cylinder drawing style 11 | Chart1.Series["Default"]["DrawingStyle"] = "Cylinder"; 12 | ... 13 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/BarColumnCharts/3DCylinder/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set Bar chart type 5 | Chart1.Series("Default").ChartType = SeriesChartType.Bar 6 | 7 | ' Enable 3D charts 8 | Chart1.ChartAreas("Default").Area3DStyle.Enable3D = true 9 | 10 | ' Set Cylinder drawing style 11 | Chart1.Series("Default")("DrawingStyle") = "Cylinder" 12 | ... 13 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/2DBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/2DBar.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/2DColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/2DColumn.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/3D100StackedBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/3D100StackedBar.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/3DBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/3DBar.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/3DColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/3DColumn.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/3DStackedBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/BarColumnCharts/Gallery/3DStackedBar.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CircularCharts/Gallery/2DPolar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/CircularCharts/Gallery/2DPolar.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CircularCharts/Gallery/2DPolarMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/CircularCharts/Gallery/2DPolarMarker.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CircularCharts/Gallery/2DRadarArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/CircularCharts/Gallery/2DRadarArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CircularCharts/Gallery/2DRadarMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/CircularCharts/Gallery/2DRadarMarker.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CircularCharts/Gallery/3DPolar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/CircularCharts/Gallery/3DPolar.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CircularCharts/Gallery/3DRadarArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/CircularCharts/Gallery/3DRadarArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CircularCharts/Polar/PolarChartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/CircularCharts/Polar/PolarChartType.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CombinationalCharts/Combinatorial/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set series chart types 5 | chart1.Series["Series1"].ChartType = SeriesChartType.Column; 6 | chart1.Series["Series2"].ChartType = SeriesChartType.Spline; 7 | chart1.Series["Series3"].ChartType = SeriesChartType.Point; 8 | 9 | // Set to 3D 10 | chart1.ChartAreas["Default"].Area3DStyle.Enable3D=true; 11 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CombinationalCharts/Combinatorial/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set series chart types 5 | Chart1.Series("Series1").ChartType = SeriesChartType.Column 6 | Chart1.Series("Series2").ChartType = SeriesChartType.Spline; 7 | Chart1.Series("Series3").ChartType = SeriesChartType.Point 8 | 9 | ' Set to 3D 10 | Chart1.ChartAreas("Default").Area3DStyle.Enable3D = True 11 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CombinationalCharts/Gallery/ColumnArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/CombinationalCharts/Gallery/ColumnArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CombinationalCharts/Gallery/LineArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/CombinationalCharts/Gallery/LineArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CombinationalCharts/Gallery/Pareto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/CombinationalCharts/Gallery/Pareto.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/CombinationalCharts/Gallery/StockArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/CombinationalCharts/Gallery/StockArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/Bollinger1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/Bollinger1.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/Bollinger2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/Bollinger2.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/CandleStick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/CandleStick.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/Forecasting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/Forecasting.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/PriceIndicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/PriceIndicators.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/Stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/FinancialCharts/Gallery/Stock.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/FinancialCharts/Stock/DividentLegend.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/FinancialCharts/Stock/DividentLegend.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/FinancialCharts/Stock/DividentMarker.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/FinancialCharts/Stock/DividentMarker.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/FinancialCharts/Stock/SplitLegend.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/FinancialCharts/Stock/SplitLegend.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/FinancialCharts/Stock/SplitMarker.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/FinancialCharts/Stock/SplitMarker.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/LineCharts/FastLine/FastLineChartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/LineCharts/FastLine/FastLineChartType.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/LineCharts/Gallery/2DFastLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/LineCharts/Gallery/2DFastLine.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/LineCharts/Gallery/2DLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/LineCharts/Gallery/2DLine.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/LineCharts/Gallery/2DLineMarkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/LineCharts/Gallery/2DLineMarkers.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/LineCharts/Gallery/2DSpline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/LineCharts/Gallery/2DSpline.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/LineCharts/Gallery/2DStepLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/LineCharts/Gallery/2DStepLine.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/LineCharts/Gallery/3DSpline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/LineCharts/Gallery/3DSpline.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/2DBeltPieChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/2DBeltPieChart.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/2DDoughnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/2DDoughnut.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/2DDoughnut2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/2DDoughnut2.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/2DSupplementalPie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/2DSupplementalPie.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/3DPie2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/3DPie2.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/3DPie3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/3DPie3.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/3DPieInPie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/3DPieInPie.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/3DStepPie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PieDoughnutCharts/Gallery/3DStepPie.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PieDoughnutCharts/PieCollectedData/PieCollectedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PieDoughnutCharts/PieCollectedData/PieCollectedData.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PointCharts/Bubble/Face.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PointCharts/Bubble/Face.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PointCharts/Gallery/2DBubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PointCharts/Gallery/2DBubble.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PointCharts/Gallery/2DPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PointCharts/Gallery/2DPoint.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PointCharts/Gallery/2DPointCustom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PointCharts/Gallery/2DPointCustom.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PointCharts/Gallery/2DPointLabels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PointCharts/Gallery/2DPointLabels.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PointCharts/Gallery/2DPointShapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PointCharts/Gallery/2DPointShapes.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PointCharts/Gallery/3DBubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PointCharts/Gallery/3DBubble.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PointCharts/Gallery/FastPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PointCharts/Gallery/FastPoint.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/Gallery/2DKagi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/Gallery/2DKagi.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/Gallery/2DPointFigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/Gallery/2DPointFigure.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/Gallery/2DRenko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/Gallery/2DRenko.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/Gallery/2DThreeLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/Gallery/2DThreeLine.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/Gallery/3DThreeLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/Gallery/3DThreeLine.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/PointAndFigure/PointAndFigureChartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PriceRangeFinancialCharts/PointAndFigure/PointAndFigureChartType.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/2DPyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/2DPyramid.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/3DFunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/3DFunnel.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/3DFunnelGap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/3DFunnelGap.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/3DFunnelWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/3DFunnelWidth.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/3DPyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/3DPyramid.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/3DPyramidGap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/PyramidFunnelCharts/Gallery/3DPyramidGap.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/3DRange/xlf/Range3D.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/3DRange/xlf/Range3D.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/3DRange/xlf/Range3D.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/3DRange/xlf/Range3D.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/3DRange/xlf/Range3D.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/3DRange/xlf/Range3D.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/3DRange/xlf/Range3D.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/3DRange/xlf/Range3D.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/3DRange/xlf/Range3D.pt-BR.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/3DRange/xlf/Range3D.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/3DRange/xlf/Range3D.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/Gallery/2DRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/RangeCharts/Gallery/2DRange.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/Gallery/2DRangeBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/RangeCharts/Gallery/2DRangeBar.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/Gallery/2DRangeColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/RangeCharts/Gallery/2DRangeColumn.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/Gallery/2DSplineRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/RangeCharts/Gallery/2DSplineRange.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/Gallery/3DRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/RangeCharts/Gallery/3DRange.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/Gallery/3DSplineRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/RangeCharts/Gallery/3DSplineRange.png -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/RangeColumn/RangeColumnChartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/ChartTypes/RangeCharts/RangeColumn/RangeColumnChartType.cs -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/RangeColumn/cscode.txt: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms.DataVisualization.Charting; 2 | ... 3 | 4 | // Set range column chart type 5 | chart1.Series["Series1"].ChartType = SeriesChartType.RangeColumn; 6 | 7 | // Set the side-by-side drawing style 8 | chart1.Series["Series1"]["DrawSideBySide"] = "false"; 9 | 10 | // Set Cylinder drawing style 11 | chart1.Series["Series1"]["DrawingStyle"] = "Cylinder"; 12 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/ChartTypes/RangeCharts/RangeColumn/vbcode.txt: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.DataVisualization.Charting 2 | ... 3 | 4 | ' Set range column chart type 5 | Chart1.Series("Series1").ChartType = SeriesChartType.RangeColumn 6 | 7 | ' Set the side-by-side drawing style 8 | Chart1.Series("Series1")("DrawSideBySide") = "false" 9 | 10 | ' Set Cylinder drawing style 11 | chart1.Series("Series1")("DrawingStyle") = "Cylinder" 12 | ... -------------------------------------------------------------------------------- /sample/ChartSamples/GettingStarted/ChartElements/ChartElementsFinished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/GettingStarted/ChartElements/ChartElementsFinished.png -------------------------------------------------------------------------------- /sample/ChartSamples/GettingStarted/CoordinateSystem/CoordinateSystem.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/GettingStarted/CoordinateSystem/CoordinateSystem.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/GettingStarted/CreatingFirstChart/CollectionEditor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/GettingStarted/CreatingFirstChart/CollectionEditor.jpg -------------------------------------------------------------------------------- /sample/ChartSamples/GettingStarted/CreatingFirstChart/dragIcon3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/GettingStarted/CreatingFirstChart/dragIcon3.jpg -------------------------------------------------------------------------------- /sample/ChartSamples/GettingStarted/SeriesAndPoints/CandleStick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/GettingStarted/SeriesAndPoints/CandleStick.png -------------------------------------------------------------------------------- /sample/ChartSamples/GettingStarted/SeriesAndPoints/Series_Point_BasicHighlight.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/GettingStarted/SeriesAndPoints/Series_Point_BasicHighlight.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/GettingStarted/SeriesAndPoints/Series_Point_BasicSplineChart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/GettingStarted/SeriesAndPoints/Series_Point_BasicSplineChart.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/GettingStarted/TOCNodes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Getting Started 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sample/ChartSamples/GettingStarted/Text/text_elements.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/GettingStarted/Text/text_elements.PNG -------------------------------------------------------------------------------- /sample/ChartSamples/Images/FDist.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/FDist.GIF -------------------------------------------------------------------------------- /sample/ChartSamples/Images/FooterMiddle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/FooterMiddle.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/Images/GradientChartArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/GradientChartArea.png -------------------------------------------------------------------------------- /sample/ChartSamples/Images/HeaderLeft.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/HeaderLeft.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/Images/HeaderMiddle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/HeaderMiddle.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/Images/HeaderRight.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/HeaderRight.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/Images/MaxValueMarker.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/MaxValueMarker.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/Images/Normal.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/Normal.GIF -------------------------------------------------------------------------------- /sample/ChartSamples/Images/TDist.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/TDist.GIF -------------------------------------------------------------------------------- /sample/ChartSamples/Images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/Thumbs.db -------------------------------------------------------------------------------- /sample/ChartSamples/Images/doc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/doc.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/Images/face.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/face.bmp -------------------------------------------------------------------------------- /sample/ChartSamples/Images/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Images/money.png -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/TabPageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/SampleMain/TabPageButton.cs -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/VerticalTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/SampleMain/VerticalTabControl.cs -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.pt-BR.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.zh-Hans.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/TabPageButton.zh-Hant.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/VerticalTabControl.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/VerticalTabControl.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/VerticalTabControl.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/VerticalTabControl.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/VerticalTabControl.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/VerticalTabControl.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/VerticalTabControl.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/VerticalTabControl.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/VerticalTabControl.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/SampleMain/xlf/VerticalTabControl.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/ActivityLegend/ActivityLegend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Utilities/ActivityLegend/ActivityLegend.cs -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/DigitalFilter/FFT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Utilities/DigitalFilter/FFT.cs -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/DigitalFilter/FFT.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Utilities/DigitalFilter/FFT.vb -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/DigitalFilter/FIRFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Utilities/DigitalFilter/FIRFilters.cs -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/DigitalFilter/FIRFilters.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Utilities/DigitalFilter/FIRFilters.vb -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/RangeSpliceChartHelper/RangeSpliceChartHelperException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace System.Windows.Forms.DataVisualization.Charting.Utilities 6 | { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Utilities/SampleMain/MainForm.cs -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/TabPageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Utilities/SampleMain/TabPageButton.cs -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/VerticalTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Utilities/SampleMain/VerticalTabControl.cs -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.pt-BR.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.zh-Hans.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/MainForm.zh-Hant.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/TabPageButton.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/TabPageButton.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/TabPageButton.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/TabPageButton.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/TabPageButton.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/TabPageButton.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/TabPageButton.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/TabPageButton.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/TabPageButton.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SampleMain/xlf/TabPageButton.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SixSigma/SixSigma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Utilities/SixSigma/SixSigma.cs -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SixSigma/SixSigma.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Utilities/SixSigma/SixSigma.vb -------------------------------------------------------------------------------- /sample/ChartSamples/Utilities/SpikeRemoval/SpikeRemoval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/sample/ChartSamples/Utilities/SpikeRemoval/SpikeRemoval.cs -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Annotation/AnnotationDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/src/System.Windows.Forms.DataVisualization/Annotation/AnnotationDesign.cs -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/ChartControl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/src/System.Windows.Forms.DataVisualization/Resources/ChartControl.bmp -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/ChartControl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/winforms-datavisualization/022f396f0561532c58d3af6f16cba8daa4386ce6/src/System.Windows.Forms.DataVisualization/Resources/ChartControl.ico -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/xlf/Design.cs.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/xlf/Design.de.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/xlf/Design.es.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/xlf/Design.fr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/xlf/Design.it.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/xlf/Design.ja.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/xlf/Design.ko.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/xlf/Design.pl.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/xlf/Design.pt-BR.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/xlf/Design.ru.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/System.Windows.Forms.DataVisualization/Resources/xlf/Design.tr.xlf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | --------------------------------------------------------------------------------