vote up 0 vote down star

I am using a TChart in Delphi 7, and I want to display some bar charts. I am using the following code to set up the series values from a database query:

  chart1.FreeAllSeries;

  chart1.SeriesList.Clear;

  chart1.AddSeries(TBarSeries.Create(Self));
  TBarSeries(chart1.Series[0]).BarStyle:=bsRectGradient;

  with query1 do
    begin
      Close;
      Execute;

      while not EoF do
        begin
          chart1.Series[0].Add(FieldAsFloat('sum_actual_days'), FieldAsString('contract_no'));
          Next;
        end;

    end;

Each bar (value) is now showing the label both below the bar, and in a yellow rectangle above the bar.

Instead of repeating the label value twice, I have some additional information from the query that I would like to show above the bar instead of the label (or, preferably, as a mouseover hint). Can this be done with the TChart? And how... ?

flag

76% accept rate

2 Answers

vote up 1 vote down

This can be done with a TChart by using the chart's OnMouseMove event. Something like this should get you started:

procedure TForm1.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);
var
  SeriesIndex: Integer;
begin
  SeriesIndex := Series1.Clicked(X, Y);

  Chart1.ShowHint := SeriesIndex <> -1;

  if Chart1.ShowHint then
  begin
    query1.RecNo := SeriesIndex; { this may need to be SeriesIndex + 1 }
    Chart1.Hint := query1.FieldByName('YourFieldNameHere').AsString;
  end;
end;

Of course, the query that you used to populate the chart must still be open for this code to work.

link|flag
vote up 0 vote down

There is the "Mark Tips" tool that allows you to show a hint when you move over a bar. But I'm not sure if you can modify the tip to show custom data instead of the predifined styles.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.