Jump to content

CHART BAR Multiple


SISBLU Software

Recommended Posts

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

 

 

Link to comment
Share on other sites

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

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