Versions Compared

Key

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

Jira LegacyserverJIRA (originlab.jira.com)columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolutionserverIdde9745f4-6a46-3986-b6b4-6ec476a4c732keyJIRA: ORG-9979

Table of Contents
maxLevel2
minLevel2

LabTalk Access to Properties of Individual Radar Axis 

...

serverJIRA (originlab.jira.com)columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolutionserverIdde9745f4-6a46-3986-b6b4-6ec476a4c732keyJIRA: ORG-9980

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)

...

Tile Windows In a Sequence

JIRA: ORG-9984

Code Block
win -s th1; /// tile horizontally first by window type then by name
win -s tv2; /// tile vertically by window name


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

Jira LegacyserverJIRA (originlab.jira.com)columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolutionserverIdde9745f4-6a46-3986-b6b4-6ec476a4c732keyJIRA: ORG-10507

  • BeforePointProc will be called before PointProc macro
  • AfterPointProc will be called after  PointProc macro
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

key

JIRA
Function AreaVariableTypeDefaultSupportedDescription
Jira Legacy
showSummaryfalse
serverJIRA (originlab.jira.com)
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIdde9745f4-6a46-3986-b6b4-6ec476a4c732
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