Hi everyone,
so I'm making a graph with a map shape using pictures as graph markers. On top of the graph I want to make buttons to change the marker size, so the users don't have to right click --> graph --> marker size --> other -->enter value --> ok. Unfortunately I can't get this property to change. I made buttons that change other properties like graph size or background color which do work.
Here is a sample of my script :
win = New Window ("My custom Graph",
V List Box (
bb = Button Box ("Change marker size", gb << Set Marker Size (40)),
bb2 = Button Box ("change graph size ", gb<<Size (800, 600)) ,
gb = Grap builder (
//all my graph builder arguments
)
)
);
So, why is this not working ? Do I need to use a graph Box instead of Graph Builder ? Or do I need to use an instruction like Send To Report or Dispatch ?
Last but not least, what is the logic of making jsl behave this way ? If I can change the graph size using gb<< size, why not have the same with set marker size ?
~~Bob~~