Jump to content

Create Cahrt Series at runtime.


Kratov

Recommended Posts

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,

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...