how to take isVisible true on the legend graph, below is the code
legend: const Legend(
isVisible: true,
position: LegendPosition.bottom,
),
Later the value will be connected to an inkwell or button to display a line on the graph
I want to apply it to the code below, if the code in the code is pressed it displays a graph of isVisible true in the legend.the example code below, Padding( padding: const EdgeInsets.all(14.0), child: InkWell( onTap: () {}, child: Image.asset( 'asset/images/picture.png', width: 20, height: 30, ), ), ),
I have implemented inkwell on each button, I don't know the implementation yet, currently I am learning from the Flutter documentation or from other references
I am not sure where I could find this Legend widget.Sample code is given below.you can place your visibility changing widget instead of Legend inside the sample.