Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
//Assuming a radar chart is active
//"Rescale Each Axis Independently" should be checked on Miscellaneous page
layer.y1.to = 18;
layer.y2.to = 25;

LabTalk Access to Margins of Legend

JIRA: ORG-10891

PropertyAccessDescription
object.margin.unitRead/write, numeric

It specifies the unit to define the margin between the text and its borders.
1 = in percent of font height (Default);
0 = in percent of whole text height.

object.margin.left,
object.margin.right,
object.margin.top,
object.margin.bottom

Read/write, numeric

It specifies the left/right/top/bottom margin between the text and its borders.
The value is in percentage of the text margin unit, and the unit is defined by object.margin.unit property.

LabTalk Access to 1D&2D Kernal Density Estimation

JIRA: ORG-11688

two LT functions in SCV's category Distributions: PDF:

Code Block
ksdensity(x, vd, w)
ks2density(x, y, vx, vy, wx, wy)

...

Force Recalculation on a Specific Operation 

JIRA: ORG-10506

Code Block
//Force the operation with UID 804 to recalculate
run -p aui 804;

New Notation support to define LabTalk Literal string

JIRA: ORG-10482

  • Support for labtalk string definition

    Code Block
    // The syntax <[< indicates the start of literal strings
    // The syntax >]> indicates the end of literal strings
    // The syntax can be changed in Origin.ini "Text" section
    // Can be used to include special symbols like double quotation marks in a string
    string str$ = <[<a"b'";"c">]>;
    str$=;
    //Should return a"b'";

...

  • "c"
  • Support in X-Function arguments

    Code Block
    patternT text:=<[<"Sample A" "Sample B" "Sample C">]>;

New Macros will be called when using Draw Data tool

...

Code Block
titleUse spline for connect line in Draw Data
def AfterPointProc
{
	if (getpts.count >= 3)
	{
		set %B -l 0;
	}
}
dotool 5;

...

New System Variables


JIRA
Function AreaVariableTypeDefaultSupportedDescription
ORG-11066

Size of the worksheet cell with embedded graph when auto re-size

@WCSGWint2Positive integerWorksheet Cell Size Graph Width, 1.5 = 150% of default column width
@WCSGHint6Positive integerWorksheet Cell Size Graph Height, 1.5 = 150% of default row height