Jump to content

Recommended Posts

Posted
20 hours ago, Daha Software said:

Thisis an example I need. There are two tables (input and output)

Hello,

\FMSoft\Framework\uniGUI\Demos\Desktop\ChartDemo - DB

?

Posted

OK thanks! STACKED = FALSE 

 

The function color is WORK

 

function beforerender(sender, eOpts)
{
  var me=sender.chart;
    me.refill=function(sprite, config, rendererData, index) {
        return {fillStyle: me.colors[index]}
    };   
    me.series[0].setRenderer(me.refill);
}

 

But how to update the legend COLOR?

And 

How to remove the stitch (point) ???

 

image.png.4470848ef9af7f1da8a91711041917ce.png

 

 

Posted
20 hours ago, Daha Software said:

This Option: FShowMarkers

how to disable this function?

procedure TMainForm.UniFormCreate(Sender: TObject);
begin
  TUniLineSeries(UniBarSeries1).ShowMarkers := False;
end;

 

Posted
procedure TMainForm.UniFormCreate(Sender: TObject);
begin
  TUniLineSeries(UniBarSeries1).ShowMarkers := False;
end;

Perfect ... thank you very much! - this Work

---------------------------------------------------------------

 

How can I solve this:

 

function beforerender(sender, eOpts)
{
  var me=sender.chart;
    me.refill=function(sprite, config, rendererData, index) {
        return {fillStyle: me.colors[index]}
    };   
    me.series[0].setRenderer(me.refill);
}

 

But how to update the legend COLOR  (UniBarSeries1)?

 

 

image.thumb.png.e73b7b7b14a864d3bad2e80ee7a0abd8.png

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