Jump to content

Search the Community

Showing results for tags 'Charts'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 5 results

  1. Google Charts in uniGUI Hello, I have published in github my components to generate charts in uniGUI using de Google Charts API. The components support the following types: Annotation Area Bar Bubble Calendar Candlestick Column Combo Diff Donut Gantt Gauge Geo Histogram Intervals Line Organization Pie Sankey Diagram Scatter Stepped Area Table Timeline Tree Maps Trendlines Waterfall Word Trees The library includes in demos folder the GChartsDemo project with several examples that show how to build the different class charts. When running the demo you can: Display the Delphi Code used to generate the Chart Click Google Guide button to see the official documentation of Google Charts. Click on the Chart to see fired events (new) Click on Print button to print current frame with the chart/charts: You can get the source code in https://github.com/JosepPages7/Delphi-GCharts Please, if you use or like Delphi GCharts, "Star" this project in GitHub!
  2. I'm obviously confused. I looked at the demo program and saw a TUniBarSeries and a TUniLineSeries and so on. But I don't have those components in my component pallet. I have the professional version. Where do I find these components?
  3. Hello, In an AreaSeries chart is possible set a different color for each area when DefaultColors property is false? If I try with this code: AreaSeries1.ShowMarkers := False; AreaSeries1.Title := '2021'; AreaSeries1.Stacked := False; AreaSeries1.Brush.Default := False; AreaSeries1.Brush.Color := clRed; <-- RED AreaSeries1.Brush.Opacity := 0.3; AreaSeries1.DefaultColors := False; AreaSeries2.ShowMarkers := False; AreaSeries2.Title := '2020'; AreaSeries2.Stacked := False; AreaSeries2.Brush.Default := False; AreaSeries2.Brush.Color := clGreen; <-- GREEN AreaSeries2.Brush.Opacity := 0.3; AreaSeries2.DefaultColors := False; The result is: Thanks!
  4. Hi, I'm trying to create series at run time, It updates titles but not graphic bars. Need Help Please. procedure CargarGrafica< T: TUniChartSeries >(); procedure TFrmConGrupo.CargarGrafica<T>(); var Serie : T; begin DBChart1.SeriesList.Clear; DmoConsultasConta.QrySaldoGru.First; While not DmoConsultasConta.QrySaldoGru.Eof do begin Serie := T(TUniChartSeries.Create(DBChart1)); Serie.Name := ''; Serie.Parent := DBChart1; Serie.Add(DmoConsultasConta.QrySaldoGruSALDO.AsInteger,DmoConsultasConta.QrySaldoGruDESCRIPCION.AsString); DmoConsultasConta.QrySaldoGru.Next; end; end; procedure TFrmConGrupo.BtnPastelClick(Sender: TObject); begin inherited; CargarGrafica<TUniPieSeries>(); end; Best Regards,
  5. Sample code how to use google api chart https://developers.google.com/chart/interactive/docs/gallery
×
×
  • Create New...