Using a TfpgGauge of kind gkPie and BorderStyle set to bsNone still has a border.
I see in fpg_gauge.pas:
procedure TfpgBaseGauge.SetBorderStyle(AValue: TBorderStyle);
begin
if AValue <> FBorderStyle then
begin
FBorderStyle := AValue;
{ TODO: Implement Border style }
// Graeme: Wouldn't descending from TfpgBevel give you this functionality already?
// It could be a option.
//RePaint;
end;
end;
If I am reading it right, the border style is not implemented. Are there any 'hacks' to remove the border?
Using a TfpgGauge of kind gkPie and BorderStyle set to bsNone still has a border.
I see in fpg_gauge.pas:
If I am reading it right, the border style is not implemented. Are there any 'hacks' to remove the border?