Author |
Topic |
|
tbarrou
France
36 Posts |
Posted - 10/20/2016 : 05:51:07 AM
|
Hi,
I'm trying to make a polar graph with several sets of data having different range of values. Usually on 2D graph I add layers and Y-axis (a linked x-Axis), but in case of a polar chart, this seems not possible. Is there a way to have several radial axis with different min/max on the same polar graph (same angular axis) and associate a data set to one of these radial axis ?
Thanks for your help
Origin Ver. and Service Release (Select Help-->About Origin): 2016 SR2 Operating System: w7 |
|
Hideo Fujii
USA
1582 Posts |
Posted - 10/20/2016 : 1:55:12 PM
|
Hi tbarrou,
I have tried to make a 2-layer graph with two polar charts as layers, linked the second layer's radial scale(Y) to the first layer with custom scale mapping (e.g., Y1=Y1/30+0.2), but it worked okay; i.e., when I changed the radial scale of the parent's layer, the child's scale also changed accordingly. So, I couldn't reproduce the problem of layer linking between two polar charts.
Could you an describe the steps of your procedure here?
Thank you.
--Hideo Fujii OriginLab
|
|
|
tbarrou
France
36 Posts |
Posted - 10/21/2016 : 04:56:19 AM
|
Hi Hideo,
I tried adding a layer by using Graph/NewLayer/Right-Y (Linked X). By doing this, I have a regular 2D plot, not a polar plot... There is no menu like add new layer "Radial-Y-Axis (Linked Angular-X-Axis)"... I did not find how converting the new 2D layer (already linked to the initial polar plot layer) into a polar plot. I double check the Help files, but I didn't find description on adding a "polar" layer
I just thought to use graph merging and this works well so far. It just leads to create many graphs in the project.
Thanks Thomas |
|
|
snowli
USA
1387 Posts |
Posted - 10/21/2016 : 3:40:48 PM
|
Maybe the simplest is just plot each polar graph as individual graphs.
Then choose Graph: Merge Graph Windows...
In the dialog, set arrangement to be 1 row x 1 column so they overlap.
Thanks, Snow |
|
|
Hideo Fujii
USA
1582 Posts |
Posted - 10/21/2016 : 5:57:43 PM
|
Hi tbarrou,
In addition to Snow's suggestion, to add an empty layer, could you please to try the following script (which preserves the original graph just in case)?:parentLayer$=%H;
window -d;
childLayer$=%H;
doc -e D{
layer -e %C;
}
merge_graph option:=specified graphs:="%(parentLayer$)"+char(10)$+"%(childLayer$)" arrange:=0 row:=1 col:=1 linkarrange:=1;
layer2.link=1;
layer.Y.link=1; Hope this also helps.
--Hideo Fujii OriginLab |
Edited by - Hideo Fujii on 10/21/2016 5:58:49 PM |
|
|
tbarrou
France
36 Posts |
Posted - 10/24/2016 : 04:06:22 AM
|
Hi Snow, Hideo,
I got what i wanted by making new plots and merging them into one. I tried the script that also works. Angular axis is identical but not linked, which is seems normal as there is no "layer2.x.link =1" in the script.
this an idea for new future features.
Thanks for your help Thomas |
|
|
VladGets1
Germany
12 Posts |
Posted - 11/01/2016 : 07:47:37 AM
|
Hi Do you have a video guide?
quote: Originally posted by tbarrou
Hi Snow, Hideo,
I got what i wanted by making new plots and merging them into one. I tried the script that also works. Angular axis is identical but not linked, which is seems normal as there is no "layer2.x.link =1" in the script.
this an idea for new future features.
Thanks for your help Thomas
|
|
|
Hideo Fujii
USA
1582 Posts |
|
|
Topic |
|