Jump to content

TUniRadarSeries Strange Values


Skepsis IT

Recommended Posts

Hi everybody,

does anyone face a problem with the way that uniradarseries shows values; For better understanding see the attached picture.

There is a uniradarseries having opacity 0 and value 10 and another uniradarseries having the specific values on the grid at the right of the picture. e.g. Flexibility 7,5 but on the uniradar is a lot of above 8.

Regards

uniradar.png

Link to comment
Share on other sites

@Sherzod

if you want to play with it just paste the following sample code
 

procedure TMainForm.UniButton1Click(Sender: TObject);
var dchart:TUniChart;
    radarseries:TUniRadarSeries;
begin
  if assigned(dchart) then
    dchart.Free;

  DChart:=TUniChart.Create(self);
  DChart.Parent:=MainForm;
  DChart.Showhint:=True;
  DChart.TitleVisible:=False;
  DChart.LayoutConfig.Flex:=1;
  DChart.LayoutConfig.Width:='100%';
  DChart.LayoutConfig.BodyPadding:='10';
  DChart.Animate:=True;
  DChart.SeriesList.Clear;

  radarseries:=tuniradarseries.Create(dchart);
  radarseries.Parent:=DChart;
  radarseries.Highlight.Enabled:=True;
  radarseries.Brush.Default:=False;
  radarseries.Brush.Opacity:=0;
  radarseries.Add(10,'speed');
  radarseries.Add(10,'stability');
  radarseries.Add(10,'accuracy');
  radarseries.Add(10,'not remember');

  radarseries:=tuniradarseries.Create(dchart);
  radarseries.Parent:=DChart;
  radarseries.MarkerConfig.Shape:='cross';
  radarseries.MarkerConfig.Width:=100;
  radarseries.Add(4,'speed');
  radarseries.Add(9,'stability');
  radarseries.Add(7,'accuracy');
  radarseries.Add(6,'not remember');

 

Link to comment
Share on other sites

  • 1 month later...
On 7/17/2019 at 5:29 PM, Skepsis IT said:

@Sherzod

if you want to play with it just paste the following sample code
 


procedure TMainForm.UniButton1Click(Sender: TObject);
var dchart:TUniChart;
    radarseries:TUniRadarSeries;
begin
  if assigned(dchart) then
    dchart.Free;

  DChart:=TUniChart.Create(self);
  DChart.Parent:=MainForm;
  DChart.Showhint:=True;
  DChart.TitleVisible:=False;
  DChart.LayoutConfig.Flex:=1;
  DChart.LayoutConfig.Width:='100%';
  DChart.LayoutConfig.BodyPadding:='10';
  DChart.Animate:=True;
  DChart.SeriesList.Clear;

  radarseries:=tuniradarseries.Create(dchart);
  radarseries.Parent:=DChart;
  radarseries.Highlight.Enabled:=True;
  radarseries.Brush.Default:=False;
  radarseries.Brush.Opacity:=0;
  radarseries.Add(10,'speed');
  radarseries.Add(10,'stability');
  radarseries.Add(10,'accuracy');
  radarseries.Add(10,'not remember');

  radarseries:=tuniradarseries.Create(dchart);
  radarseries.Parent:=DChart;
  radarseries.MarkerConfig.Shape:='cross';
  radarseries.MarkerConfig.Width:=100;
  radarseries.Add(4,'speed');
  radarseries.Add(9,'stability');
  radarseries.Add(7,'accuracy');
  radarseries.Add(6,'not remember');

 

 

Link to comment
Share on other sites

  • 1 month later...

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...