├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── demos ├── BasicDemo │ ├── BasicDemo.dpr │ ├── BasicDemo.dproj │ ├── BasicDemo.res │ ├── Main.dfm │ ├── Main.pas │ ├── MainModule.dfm │ ├── MainModule.pas │ ├── ServerModule.dfm │ └── ServerModule.pas ├── DBDemo │ ├── DBDemo.dpr │ ├── DBDemo.dproj │ ├── DBDemo.res │ ├── Main.dfm │ ├── Main.pas │ ├── MainModule.dfm │ ├── MainModule.pas │ ├── ServerModule.dfm │ └── ServerModule.pas └── GChartsDemo │ ├── Demo.AnnotationChart.Sample.pas │ ├── Demo.AreaChart.Sample.pas │ ├── Demo.AreaChart.Stacking.pas │ ├── Demo.BarChart.Annotations.pas │ ├── Demo.BarChart.BarStyles.pas │ ├── Demo.BarChart.ColoringBars.pas │ ├── Demo.BarChart.Customizable.pas │ ├── Demo.BarChart.LabelingBars.pas │ ├── Demo.BarChart.Sample.pas │ ├── Demo.BarChart.Series.pas │ ├── Demo.BarChart.Stacked.pas │ ├── Demo.BarChart.Stacking.pas │ ├── Demo.BaseFrame.dfm │ ├── Demo.BaseFrame.pas │ ├── Demo.BubbleChart.ColorByNumbers.pas │ ├── Demo.BubbleChart.CustomizingLabels.pas │ ├── Demo.BubbleChart.Sample.pas │ ├── Demo.CalendarChart.MultiLanguage.pas │ ├── Demo.CalendarChart.Sample.pas │ ├── Demo.CandlestickChart.Sample.pas │ ├── Demo.CandlestickChart.Waterfall.pas │ ├── Demo.ColumnChart.Annotations.pas │ ├── Demo.ColumnChart.ColoringColumns.pas │ ├── Demo.ColumnChart.ColumnStyles.pas │ ├── Demo.ColumnChart.Customizable.pas │ ├── Demo.ColumnChart.LabelingColumns.pas │ ├── Demo.ColumnChart.Sample.pas │ ├── Demo.ColumnChart.Series.pas │ ├── Demo.ColumnChart.Stacked.pas │ ├── Demo.ColumnChart.Stacking.pas │ ├── Demo.ColumnChart.Trendlines.pas │ ├── Demo.ComboChart.Sample.pas │ ├── Demo.DiffChart.Column.pas │ ├── Demo.DiffChart.Pie.pas │ ├── Demo.GanttChart.ComputingStartEndDuration.pas │ ├── Demo.GanttChart.CriticalPath.pas │ ├── Demo.GanttChart.GroupingResources.pas │ ├── Demo.GanttChart.NoDependencies.pas │ ├── Demo.GanttChart.Sample.pas │ ├── Demo.GanttChart.StylingArrows.pas │ ├── Demo.GanttChart.StylingTracks.pas │ ├── Demo.GaugeChart.Sample.pas │ ├── Demo.GeoChart.Coloring.pas │ ├── Demo.GeoChart.Marker.pas │ ├── Demo.GeoChart.ProportionalMarkers.pas │ ├── Demo.GeoChart.Sample.pas │ ├── Demo.Histogram.MultipleSeries.pas │ ├── Demo.Histogram.Sample.pas │ ├── Demo.Intervals.Sample.pas │ ├── Demo.Intervals.Styles.pas │ ├── Demo.LineChart.Bitcoin.pas │ ├── Demo.LineChart.Crosshairs.pas │ ├── Demo.LineChart.CurvingLines.pas │ ├── Demo.LineChart.LogScales.pas │ ├── Demo.LineChart.Sample.pas │ ├── Demo.LineChart.Styles.pas │ ├── Demo.LineChart.TrendLines.pas │ ├── Demo.Material.LineChart.DualY.pas │ ├── Demo.Material.LineChart.Sample.pas │ ├── Demo.Material.LineChart.TopX.pas │ ├── Demo.MaterialBarChart.DualX.pas │ ├── Demo.MaterialBarChart.RightY.pas │ ├── Demo.MaterialBarChart.Sample.pas │ ├── Demo.MaterialBarChart.TopX.pas │ ├── Demo.MaterialColumnChart.DualY.pas │ ├── Demo.MaterialColumnChart.RightY.pas │ ├── Demo.MaterialColumnChart.Sample.pas │ ├── Demo.MaterialColumnChart.TopX.pas │ ├── Demo.MaterialScatterChart.DualY.pas │ ├── Demo.MaterialScatterChart.Sample.pas │ ├── Demo.MaterialScatterChart.TopX.pas │ ├── Demo.Miscellaneous.Animation.pas │ ├── Demo.Miscellaneous.AxisNumberFormat.pas │ ├── Demo.Miscellaneous.AxisNumberFormatLang.pas │ ├── Demo.Miscellaneous.AxisScale.pas │ ├── Demo.Miscellaneous.Crosshairs.pas │ ├── Demo.Miscellaneous.Customize.pas │ ├── Demo.Miscellaneous.CustomizeLines.pas │ ├── Demo.Miscellaneous.CustomizePoints.pas │ ├── Demo.Miscellaneous.CustomizeTooltips.pas │ ├── Demo.Miscellaneous.DateTimes.pas │ ├── Demo.Miscellaneous.Formatters.pas │ ├── Demo.Miscellaneous.Overlays.pas │ ├── Demo.OrgChart.Sample.pas │ ├── Demo.Overview.pas │ ├── Demo.PieChart.Donut.pas │ ├── Demo.PieChart.Exploding_a_Slice.pas │ ├── Demo.PieChart.Removing_Slices.pas │ ├── Demo.PieChart.Rotating.pas │ ├── Demo.PieChart.Sample.pas │ ├── Demo.PieChart_3D.pas │ ├── Demo.SankeyDiagram.MultiLevels.pas │ ├── Demo.SankeyDiagram.Sample.pas │ ├── Demo.ScatterChart.DualY.pas │ ├── Demo.ScatterChart.Sample.pas │ ├── Demo.SteppedAreaChart.Custom.pas │ ├── Demo.SteppedAreaChart.Sample.pas │ ├── Demo.SteppedAreaChart.Stacked.pas │ ├── Demo.TableChart.Sample.pas │ ├── Demo.TimelineChart.Advanced.pas │ ├── Demo.TimelineChart.ClassroomSchedules.pas │ ├── Demo.TimelineChart.ClassroomSchedulesCtrlColors.pas │ ├── Demo.TimelineChart.ClassroomSchedulesSingleColor.pas │ ├── Demo.TimelineChart.LabelingTheBars.pas │ ├── Demo.TimelineChart.Sample.pas │ ├── Demo.TreeMapChart.Sample.pas │ ├── Demo.Trendlines.Exponential.pas │ ├── Demo.Trendlines.Polynomial.pas │ ├── Demo.Trendlines.Sample.pas │ ├── Demo.WordTrees.Sample.pas │ ├── GChartsDemo.dpr │ ├── GChartsDemo.dproj │ ├── GChartsDemo.res │ ├── Main.dfm │ ├── Main.pas │ ├── MainModule.dfm │ ├── MainModule.pas │ ├── ServerModule.dfm │ └── ServerModule.pas ├── img ├── Demo.png ├── Overview.png ├── PieChartSample.png ├── Print.png └── Star.png ├── package ├── cfs.GCharts.uniGUI.Alexandria.dpk ├── cfs.GCharts.uniGUI.Berlin.dpk ├── cfs.GCharts.uniGUI.Rio.dpk ├── cfs.GCharts.uniGUI.Seattle.dpk ├── cfs.GCharts.uniGUI.Sydney.dpk ├── cfs.GCharts.uniGUI.Sydney.dproj ├── cfs.GCharts.uniGUI.Sydney.res └── cfs.GCharts.uniGUI.Tokio.dpk └── sources ├── cfs.GCharts.pas └── cfs.GCharts.uniGUI.pas /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/README.md -------------------------------------------------------------------------------- /demos/BasicDemo/BasicDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/BasicDemo/BasicDemo.dpr -------------------------------------------------------------------------------- /demos/BasicDemo/BasicDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/BasicDemo/BasicDemo.dproj -------------------------------------------------------------------------------- /demos/BasicDemo/BasicDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/BasicDemo/BasicDemo.res -------------------------------------------------------------------------------- /demos/BasicDemo/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/BasicDemo/Main.dfm -------------------------------------------------------------------------------- /demos/BasicDemo/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/BasicDemo/Main.pas -------------------------------------------------------------------------------- /demos/BasicDemo/MainModule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/BasicDemo/MainModule.dfm -------------------------------------------------------------------------------- /demos/BasicDemo/MainModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/BasicDemo/MainModule.pas -------------------------------------------------------------------------------- /demos/BasicDemo/ServerModule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/BasicDemo/ServerModule.dfm -------------------------------------------------------------------------------- /demos/BasicDemo/ServerModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/BasicDemo/ServerModule.pas -------------------------------------------------------------------------------- /demos/DBDemo/DBDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/DBDemo/DBDemo.dpr -------------------------------------------------------------------------------- /demos/DBDemo/DBDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/DBDemo/DBDemo.dproj -------------------------------------------------------------------------------- /demos/DBDemo/DBDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/DBDemo/DBDemo.res -------------------------------------------------------------------------------- /demos/DBDemo/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/DBDemo/Main.dfm -------------------------------------------------------------------------------- /demos/DBDemo/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/DBDemo/Main.pas -------------------------------------------------------------------------------- /demos/DBDemo/MainModule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/DBDemo/MainModule.dfm -------------------------------------------------------------------------------- /demos/DBDemo/MainModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/DBDemo/MainModule.pas -------------------------------------------------------------------------------- /demos/DBDemo/ServerModule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/DBDemo/ServerModule.dfm -------------------------------------------------------------------------------- /demos/DBDemo/ServerModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/DBDemo/ServerModule.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.AnnotationChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.AnnotationChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.AreaChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.AreaChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.AreaChart.Stacking.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.AreaChart.Stacking.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BarChart.Annotations.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BarChart.Annotations.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BarChart.BarStyles.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BarChart.BarStyles.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BarChart.ColoringBars.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BarChart.ColoringBars.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BarChart.Customizable.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BarChart.Customizable.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BarChart.LabelingBars.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BarChart.LabelingBars.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BarChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BarChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BarChart.Series.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BarChart.Series.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BarChart.Stacked.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BarChart.Stacked.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BarChart.Stacking.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BarChart.Stacking.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BaseFrame.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BaseFrame.dfm -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BaseFrame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BaseFrame.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BubbleChart.ColorByNumbers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BubbleChart.ColorByNumbers.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BubbleChart.CustomizingLabels.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BubbleChart.CustomizingLabels.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.BubbleChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.BubbleChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.CalendarChart.MultiLanguage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.CalendarChart.MultiLanguage.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.CalendarChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.CalendarChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.CandlestickChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.CandlestickChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.CandlestickChart.Waterfall.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.CandlestickChart.Waterfall.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ColumnChart.Annotations.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ColumnChart.Annotations.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ColumnChart.ColoringColumns.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ColumnChart.ColoringColumns.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ColumnChart.ColumnStyles.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ColumnChart.ColumnStyles.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ColumnChart.Customizable.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ColumnChart.Customizable.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ColumnChart.LabelingColumns.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ColumnChart.LabelingColumns.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ColumnChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ColumnChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ColumnChart.Series.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ColumnChart.Series.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ColumnChart.Stacked.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ColumnChart.Stacked.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ColumnChart.Stacking.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ColumnChart.Stacking.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ColumnChart.Trendlines.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ColumnChart.Trendlines.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ComboChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ComboChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.DiffChart.Column.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.DiffChart.Column.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.DiffChart.Pie.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.DiffChart.Pie.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GanttChart.ComputingStartEndDuration.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GanttChart.ComputingStartEndDuration.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GanttChart.CriticalPath.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GanttChart.CriticalPath.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GanttChart.GroupingResources.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GanttChart.GroupingResources.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GanttChart.NoDependencies.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GanttChart.NoDependencies.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GanttChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GanttChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GanttChart.StylingArrows.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GanttChart.StylingArrows.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GanttChart.StylingTracks.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GanttChart.StylingTracks.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GaugeChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GaugeChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GeoChart.Coloring.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GeoChart.Coloring.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GeoChart.Marker.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GeoChart.Marker.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GeoChart.ProportionalMarkers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GeoChart.ProportionalMarkers.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.GeoChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.GeoChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Histogram.MultipleSeries.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Histogram.MultipleSeries.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Histogram.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Histogram.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Intervals.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Intervals.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Intervals.Styles.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Intervals.Styles.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.LineChart.Bitcoin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.LineChart.Bitcoin.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.LineChart.Crosshairs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.LineChart.Crosshairs.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.LineChart.CurvingLines.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.LineChart.CurvingLines.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.LineChart.LogScales.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.LineChart.LogScales.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.LineChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.LineChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.LineChart.Styles.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.LineChart.Styles.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.LineChart.TrendLines.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.LineChart.TrendLines.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Material.LineChart.DualY.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Material.LineChart.DualY.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Material.LineChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Material.LineChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Material.LineChart.TopX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Material.LineChart.TopX.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.MaterialBarChart.DualX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.MaterialBarChart.DualX.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.MaterialBarChart.RightY.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.MaterialBarChart.RightY.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.MaterialBarChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.MaterialBarChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.MaterialBarChart.TopX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.MaterialBarChart.TopX.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.MaterialColumnChart.DualY.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.MaterialColumnChart.DualY.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.MaterialColumnChart.RightY.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.MaterialColumnChart.RightY.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.MaterialColumnChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.MaterialColumnChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.MaterialColumnChart.TopX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.MaterialColumnChart.TopX.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.MaterialScatterChart.DualY.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.MaterialScatterChart.DualY.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.MaterialScatterChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.MaterialScatterChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.MaterialScatterChart.TopX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.MaterialScatterChart.TopX.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.Animation.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.Animation.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.AxisNumberFormat.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.AxisNumberFormat.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.AxisNumberFormatLang.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.AxisNumberFormatLang.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.AxisScale.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.AxisScale.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.Crosshairs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.Crosshairs.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.Customize.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.Customize.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.CustomizeLines.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.CustomizeLines.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.CustomizePoints.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.CustomizePoints.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.CustomizeTooltips.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.CustomizeTooltips.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.DateTimes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.DateTimes.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.Formatters.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.Formatters.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Miscellaneous.Overlays.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Miscellaneous.Overlays.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.OrgChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.OrgChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Overview.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Overview.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.PieChart.Donut.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.PieChart.Donut.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.PieChart.Exploding_a_Slice.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.PieChart.Exploding_a_Slice.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.PieChart.Removing_Slices.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.PieChart.Removing_Slices.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.PieChart.Rotating.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.PieChart.Rotating.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.PieChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.PieChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.PieChart_3D.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.PieChart_3D.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.SankeyDiagram.MultiLevels.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.SankeyDiagram.MultiLevels.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.SankeyDiagram.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.SankeyDiagram.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ScatterChart.DualY.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ScatterChart.DualY.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.ScatterChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.ScatterChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.SteppedAreaChart.Custom.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.SteppedAreaChart.Custom.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.SteppedAreaChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.SteppedAreaChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.SteppedAreaChart.Stacked.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.SteppedAreaChart.Stacked.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.TableChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.TableChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.TimelineChart.Advanced.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.TimelineChart.Advanced.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.TimelineChart.ClassroomSchedules.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.TimelineChart.ClassroomSchedules.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.TimelineChart.ClassroomSchedulesCtrlColors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.TimelineChart.ClassroomSchedulesCtrlColors.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.TimelineChart.ClassroomSchedulesSingleColor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.TimelineChart.ClassroomSchedulesSingleColor.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.TimelineChart.LabelingTheBars.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.TimelineChart.LabelingTheBars.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.TimelineChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.TimelineChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.TreeMapChart.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.TreeMapChart.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Trendlines.Exponential.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Trendlines.Exponential.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Trendlines.Polynomial.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Trendlines.Polynomial.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.Trendlines.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.Trendlines.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/Demo.WordTrees.Sample.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Demo.WordTrees.Sample.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/GChartsDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/GChartsDemo.dpr -------------------------------------------------------------------------------- /demos/GChartsDemo/GChartsDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/GChartsDemo.dproj -------------------------------------------------------------------------------- /demos/GChartsDemo/GChartsDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/GChartsDemo.res -------------------------------------------------------------------------------- /demos/GChartsDemo/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Main.dfm -------------------------------------------------------------------------------- /demos/GChartsDemo/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/Main.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/MainModule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/MainModule.dfm -------------------------------------------------------------------------------- /demos/GChartsDemo/MainModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/MainModule.pas -------------------------------------------------------------------------------- /demos/GChartsDemo/ServerModule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/ServerModule.dfm -------------------------------------------------------------------------------- /demos/GChartsDemo/ServerModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/demos/GChartsDemo/ServerModule.pas -------------------------------------------------------------------------------- /img/Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/img/Demo.png -------------------------------------------------------------------------------- /img/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/img/Overview.png -------------------------------------------------------------------------------- /img/PieChartSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/img/PieChartSample.png -------------------------------------------------------------------------------- /img/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/img/Print.png -------------------------------------------------------------------------------- /img/Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/img/Star.png -------------------------------------------------------------------------------- /package/cfs.GCharts.uniGUI.Alexandria.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/package/cfs.GCharts.uniGUI.Alexandria.dpk -------------------------------------------------------------------------------- /package/cfs.GCharts.uniGUI.Berlin.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/package/cfs.GCharts.uniGUI.Berlin.dpk -------------------------------------------------------------------------------- /package/cfs.GCharts.uniGUI.Rio.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/package/cfs.GCharts.uniGUI.Rio.dpk -------------------------------------------------------------------------------- /package/cfs.GCharts.uniGUI.Seattle.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/package/cfs.GCharts.uniGUI.Seattle.dpk -------------------------------------------------------------------------------- /package/cfs.GCharts.uniGUI.Sydney.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/package/cfs.GCharts.uniGUI.Sydney.dpk -------------------------------------------------------------------------------- /package/cfs.GCharts.uniGUI.Sydney.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/package/cfs.GCharts.uniGUI.Sydney.dproj -------------------------------------------------------------------------------- /package/cfs.GCharts.uniGUI.Sydney.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/package/cfs.GCharts.uniGUI.Sydney.res -------------------------------------------------------------------------------- /package/cfs.GCharts.uniGUI.Tokio.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/package/cfs.GCharts.uniGUI.Tokio.dpk -------------------------------------------------------------------------------- /sources/cfs.GCharts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/sources/cfs.GCharts.pas -------------------------------------------------------------------------------- /sources/cfs.GCharts.uniGUI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosepPages7/Delphi-GCharts/HEAD/sources/cfs.GCharts.uniGUI.pas --------------------------------------------------------------------------------