Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get Value of visibility of series

Is it possible to get the value of the visibility of a series? I know how to change it. But is there anything like series.getVisibility()?

like image 659
hanswurst90 Avatar asked Dec 11 '22 22:12

hanswurst90


1 Answers

There's a read-only property on the series object named visible that you can use for that.

series.visible
like image 143
JohnnyHK Avatar answered Jan 29 '23 19:01

JohnnyHK