Difference: CDChartInitialize (1 vs. 15)

Revision 152013-02-20 - RayPelegrino

Line: 1 to 1
 
META TOPICPARENT name="CDChartDirectorBaseChartRoutines"
<-- WYSIWYG content - do not remove this comment, and never use this identical text in your topics-->

.CHART INITIALIZE

Line: 20 to 20
 
Angular Meter
Finance Chart
Linear Meter
Multi Chart
Pie Chart
Polar Chart
Pyramid Chart
Surface chart
XY Chart
Changed:
<
<
<chart_spec_name> is the name which uniquely identifies the chart spec which is to be initialized. The <chart_spec_name> may be up to 30 characters in length and may contain the letters A-Z, the digits 0-9, and spaces. Passing this parameter is optional.
>
>
<chart_spec_name> es el nombre the name which uniquely identifies the chart spec which is to be initialized. The <chart_spec_name> may be up to 30 characters in length and may contain the letters A-Z, the digits 0-9, and spaces. Passing this parameter is optional.
  If the <chart_spec_name> parameter is not passed, then a chart with no name is initialized. If a chart with no name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.

Revision 142012-02-19 - JeanNeron

Line: 1 to 1
Changed:
<
<
META TOPICPARENT name="CDChartDirectorDesignerAPI"
>
>
META TOPICPARENT name="CDChartDirectorBaseChartRoutines"
 
<-- WYSIWYG content - do not remove this comment, and never use this identical text in your topics-->

.CHART INITIALIZE

Revision 132011-11-09 - JeanNeron

Line: 1 to 1
 
META TOPICPARENT name="CDChartDirectorDesignerAPI"
Added:
>
>
<-- WYSIWYG content - do not remove this comment, and never use this identical text in your topics-->
 

.CHART INITIALIZE

This subroutine is called to initialize or reinitialize a chart spec.

Line: 8 to 9
 

Usage:

      PASS         <chart_type>               FIELD            SHARE? N
      PASS         <chart_spec_name>          FIELD            SHARE? N
Changed:
<
<
GOSUB OCD .CHART INITIALIZE
>
>
GOSUB 0CD .CHART INITIALIZE
 
    • Check for chart initiailization error
Changed:
<
<
IF OCD .CHART INITIALIZE NE
>
>
IF 0CD .CHART INITIALIZE NE
 

Description:

This subroutine must be the first subroutine called when defining a chart.

Revision 122011-09-14 - JeanNeron

Line: 1 to 1
 
META TOPICPARENT name="CDChartDirectorDesignerAPI"

.CHART INITIALIZE

Line: 8 to 8
 

Usage:

      PASS         <chart_type>               FIELD            SHARE? N
      PASS         <chart_spec_name>          FIELD            SHARE? N
Changed:
<
<
GOSUB CHT .CHART INITIALIZE
>
>
GOSUB OCD .CHART INITIALIZE
 
    • Check for chart initiailization error
Changed:
<
<
IF CHT .CHART INITIALIZE NE
>
>
IF OCD .CHART INITIALIZE NE
 

Description:

This subroutine must be the first subroutine called when defining a chart.

Revision 112010-04-09 - SteveFrizzell

Line: 1 to 1
 
META TOPICPARENT name="CDChartDirectorDesignerAPI"

.CHART INITIALIZE

Line: 21 to 21
  <chart_spec_name> is the name which uniquely identifies the chart spec which is to be initialized. The <chart_spec_name> may be up to 30 characters in length and may contain the letters A-Z, the digits 0-9, and spaces. Passing this parameter is optional.
Changed:
<
<
If the <chart_spec_name> parameter is not passed, then the "default" chart is initialized. If the "default" chart has been previously initialized, then the previously initialized "default" chart is reinitialized clearing all previously set values.
>
>
If the <chart_spec_name> parameter is not passed, then a chart with no name is initialized. If a chart with no name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.
  If the <chart_spec_name> parameter is passed, then a chart with the specified name is initialized. If a chart with the specified name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.
Changed:
<
<
The newly initialized chart spec become the "current" chart.
>
>
The newly initialized chart become the "current" chart.
 
Changed:
<
<
If <chart_type> is Pie Chart, then this subroutine will associate a dataset with the newly initialized Pie Chart as follows:
>
>
If <chart_type> is "Pie Chart", then this subroutine will associate a dataset with the newly initialized Pie Chart as follows:
 
  • If a "current" dataset exists,
    • then that dataset is associated with the Pie Chart;
    • otherwise, if the "default" dataset exists
      • then that dataset is associated with the Pie Chart;
      • otherwise, the "default" dataset is initialized and is associated with the Pie Chart.
Changed:
<
<
When a dataset is associated with the newly initialized chart, then that dataset becomes the "current" dataset.
>
>
When a dataset is associated with the newly initialized chart, that dataset becomes the "current" dataset.
  This subroutine sets a result value in the corresponding results Token field.

Comments:

Revision 102010-04-08 - SteveFrizzell

Line: 1 to 1
 
META TOPICPARENT name="CDChartDirectorDesignerAPI"

.CHART INITIALIZE

Line: 21 to 21
  <chart_spec_name> is the name which uniquely identifies the chart spec which is to be initialized. The <chart_spec_name> may be up to 30 characters in length and may contain the letters A-Z, the digits 0-9, and spaces. Passing this parameter is optional.
Changed:
<
<
If the <chart_spec_name> parameter is not passed, then an "unnamed" chart is initialized. If an "unnamed" chart has been previously initialized, then the previously initialized "unnamed" chart is reinitialized clearing all previously set values.
>
>
If the <chart_spec_name> parameter is not passed, then the "default" chart is initialized. If the "default" chart has been previously initialized, then the previously initialized "default" chart is reinitialized clearing all previously set values.
  If the <chart_spec_name> parameter is passed, then a chart with the specified name is initialized. If a chart with the specified name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.
Line: 30 to 30
 If <chart_type> is Pie Chart, then this subroutine will associate a dataset with the newly initialized Pie Chart as follows:
  • If a "current" dataset exists,
    • then that dataset is associated with the Pie Chart;
Changed:
<
<
    • otherwise, if an "unnamed" dataset exists
>
>
    • otherwise, if the "default" dataset exists
 
      • then that dataset is associated with the Pie Chart;
Changed:
<
<
      • otherwise, an "unnamed" dataset is initialized and is associated with the Pie Chart.
>
>
      • otherwise, the "default" dataset is initialized and is associated with the Pie Chart.
  When a dataset is associated with the newly initialized chart, then that dataset becomes the "current" dataset.

Revision 92010-04-08 - SteveFrizzell

Line: 1 to 1
 
META TOPICPARENT name="CDChartDirectorDesignerAPI"

.CHART INITIALIZE

Line: 27 to 27
  The newly initialized chart spec become the "current" chart.
Added:
>
>
If <chart_type> is Pie Chart, then this subroutine will associate a dataset with the newly initialized Pie Chart as follows:
  • If a "current" dataset exists,
    • then that dataset is associated with the Pie Chart;
    • otherwise, if an "unnamed" dataset exists
      • then that dataset is associated with the Pie Chart;
      • otherwise, an "unnamed" dataset is initialized and is associated with the Pie Chart.

When a dataset is associated with the newly initialized chart, then that dataset becomes the "current" dataset.

 This subroutine sets a result value in the corresponding results Token field.

Comments:

Revision 82010-03-20 - SteveFrizzell

Line: 1 to 1
Changed:
<
<
META TOPICPARENT name="ChartDirectorDesignerAPI"
>
>
META TOPICPARENT name="CDChartDirectorDesignerAPI"
 

.CHART INITIALIZE

This subroutine is called to initialize or reinitialize a chart spec.

Line: 36 to 36
  -- SteveFrizzell - 2010-02-15
Changed:
<
<
META TOPICMOVED by="SteveFrizzell" date="1266349783" from="Main.ChartInit" to="Main.ChartInitialize"
>
>
META TOPICMOVED by="SteveFrizzell" date="1269082304" from="Main.ChartInitialize" to="Main.CDChartInitialize"

Revision 72010-03-17 - SteveFrizzell

Line: 1 to 1
 
META TOPICPARENT name="ChartDirectorDesignerAPI"

.CHART INITIALIZE

Changed:
<
<
This subroutine is called to initialize or reinitialize a chart spec. The newly initialized chart spec become the "current" chart.
>
>
This subroutine is called to initialize or reinitialize a chart spec.
 
Changed:
<
<
<chart_type> must be a valid chart type. The valid values for <chart_type> are: PieChart. Passing this parameter is required.
>
>

Usage:

      PASS         <chart_type>               FIELD            SHARE? N
      PASS         <chart_spec_name>          FIELD            SHARE? N
      GOSUB    CHT .CHART INITIALIZE
      *        Check for chart initiailization error
      IF       CHT .CHART INITIALIZE          NE

Description:

This subroutine must be the first subroutine called when defining a chart.

<chart_type> identifies the type of chart that is to be initialized. Passing this parameter is required. The valid values for <chart_type> are:

Angular Meter
Finance Chart
Linear Meter
Multi Chart
Pie Chart
Polar Chart
Pyramid Chart
Surface chart
XY Chart
 
Changed:
<
<
<chart_spec_name> is the name which uniquely identifies the chart spec which is to be initialized. The name may be up to 30 characters in length. Passing this parameter is optional.
>
>
<chart_spec_name> is the name which uniquely identifies the chart spec which is to be initialized. The <chart_spec_name> may be up to 30 characters in length and may contain the letters A-Z, the digits 0-9, and spaces. Passing this parameter is optional.
  If the <chart_spec_name> parameter is not passed, then an "unnamed" chart is initialized. If an "unnamed" chart has been previously initialized, then the previously initialized "unnamed" chart is reinitialized clearing all previously set values.

If the <chart_spec_name> parameter is passed, then a chart with the specified name is initialized. If a chart with the specified name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.

Added:
>
>
The newly initialized chart spec become the "current" chart.
 This subroutine sets a result value in the corresponding results Token field.
Changed:
<
<
      PASS         <chart_type>               FIELD            SHARE? N
      PASS         <chart_spec_name>          FIELD            SHARE? N
      GOSUB    CHT .CHART INITIALIZE
      *        Check for error
      IF       CHT .CHART INITIALIZE          NE
>
>

Comments:

Read what other users have said about this page or add your own comments.

<--/commentPlugin-->
  -- SteveFrizzell - 2010-02-15

Revision 62010-03-17 - SteveFrizzell

Line: 1 to 1
 
META TOPICPARENT name="ChartDirectorDesignerAPI"

.CHART INITIALIZE

Changed:
<
<
This subroutine is called to initialize or reinitialize a chart spec.
>
>
This subroutine is called to initialize or reinitialize a chart spec. The newly initialized chart spec become the "current" chart.
 
Changed:
<
<

>
>
<chart_type> must be a valid chart type. The valid values for <chart_type> are: PieChart. Passing this parameter is required.
 
Changed:
<
<

Usage:

PASS <chart_type> FIELD SHARE? N
PASS <chart_spec_name> FIELD SHARE? N
GOSUB CHT .CHART INITIALIZE
* Check for chart initialization error
IF CHT .CHART INITIALIZE NE

Description:

<chart_type> identifies the type of chart that is to be initialized. Passing this parameter is required. The valid values for <chart_type> are:

Angular Meter
Finance Chart
Linear Meter
Multi Chart
Pie Chart
Polar Chart
Pyramid Chart
Surface chart
XY Chart

<chart_spec_name> is the name which uniquely identifies the chart spec which is to be initialized. The <chart_spec_name> may be up to 30 characters in length and may contain the letters A-Z, the digits 0-9, and spaces. Passing this parameter is optional.

>
>
<chart_spec_name> is the name which uniquely identifies the chart spec which is to be initialized. The name may be up to 30 characters in length. Passing this parameter is optional.
  If the <chart_spec_name> parameter is not passed, then an "unnamed" chart is initialized. If an "unnamed" chart has been previously initialized, then the previously initialized "unnamed" chart is reinitialized clearing all previously set values.

If the <chart_spec_name> parameter is passed, then a chart with the specified name is initialized. If a chart with the specified name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.

Deleted:
<
<
The newly initialized chart spec become the "current" chart.
 This subroutine sets a result value in the corresponding results Token field.
Changed:
<
<

Comments:

Read what other users have said about this page or add your own comments.

<--/commentPlugin-->
>
>
      PASS         <chart_type>               FIELD            SHARE? N
      PASS         <chart_spec_name>          FIELD            SHARE? N
      GOSUB    CHT .CHART INITIALIZE
      *        Check for error
      IF       CHT .CHART INITIALIZE          NE
  -- SteveFrizzell - 2010-02-15

Revision 52010-03-17 - SteveFrizzell

Line: 1 to 1
 
META TOPICPARENT name="ChartDirectorDesignerAPI"

.CHART INITIALIZE

Changed:
<
<
This subroutine is called to initialize or reinitialize a chart spec. The newly initialized chart spec become the "current" chart.
>
>
This subroutine is called to initialize or reinitialize a chart spec.
 
Changed:
<
<
<chart_type> must be a valid chart type. The valid values for <chart_type> are: PieChart. Passing this parameter is required.
>
>

 
Changed:
<
<
<chart_spec_name> is the name which uniquely identifies the chart spec which is to be initialized. The name may be up to 30 characters in length. Passing this parameter is optional.
>
>

Usage:

PASS <chart_type> FIELD SHARE? N
PASS <chart_spec_name> FIELD SHARE? N
GOSUB CHT .CHART INITIALIZE
* Check for chart initialization error
IF CHT .CHART INITIALIZE NE

Description:

<chart_type> identifies the type of chart that is to be initialized. Passing this parameter is required. The valid values for <chart_type> are:

Angular Meter
Finance Chart
Linear Meter
Multi Chart
Pie Chart
Polar Chart
Pyramid Chart
Surface chart
XY Chart

<chart_spec_name> is the name which uniquely identifies the chart spec which is to be initialized. The <chart_spec_name> may be up to 30 characters in length and may contain the letters A-Z, the digits 0-9, and spaces. Passing this parameter is optional.

  If the <chart_spec_name> parameter is not passed, then an "unnamed" chart is initialized. If an "unnamed" chart has been previously initialized, then the previously initialized "unnamed" chart is reinitialized clearing all previously set values.

If the <chart_spec_name> parameter is passed, then a chart with the specified name is initialized. If a chart with the specified name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.

Added:
>
>
The newly initialized chart spec become the "current" chart.
 This subroutine sets a result value in the corresponding results Token field.
Changed:
<
<
      PASS         <chart_type>               FIELD            SHARE? N
      PASS         <chart_spec_name>          FIELD            SHARE? N
      GOSUB    CHT .CHART INITIALIZE
      *        Check for error
      IF       CHT .CHART INITIALIZE          NE
>
>

Comments:

Read what other users have said about this page or add your own comments.

<--/commentPlugin-->
  -- SteveFrizzell - 2010-02-15

Revision 42010-02-20 - SteveFrizzell

Line: 1 to 1
 
META TOPICPARENT name="ChartDirectorDesignerAPI"

.CHART INITIALIZE

Changed:
<
<
This subroutine is called to initialize or reinitialize a chart spec.
>
>
This subroutine is called to initialize or reinitialize a chart spec. The newly initialized chart spec become the "current" chart.
 
Changed:
<
<
<chart_type> must be a valid chart type. The valid values for <chart_type> are:
>
>
<chart_type> must be a valid chart type. The valid values for <chart_type> are: PieChart. Passing this parameter is required.
 
Changed:
<
<
PieChart
>
>
<chart_spec_name> is the name which uniquely identifies the chart spec which is to be initialized. The name may be up to 30 characters in length. Passing this parameter is optional.
 
Changed:
<
<
<chart_spec_name> is the name which will be used to uniquely identify the chart spec which is to be initialized. The name may be up to 30 characters in length. Passing this parameter is optional. If this parameter is not passed, then an "unnamed" chart is initialized. If an "unnamed" chart has been previously initialized, then the previously initialized "unnamed" chart is reinitialized clearing all previously set values. If this parameter is passed, then a chart with the specified name is initialized. If a chart with the specified name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.
      PASS         <chart_type>               FIELD            SHARE? N  (Required)
      PASS         <chart_spec_name>          FIELD            SHARE? N  (Optional)
      GOSUB    CHT .CHART INIT
>
>
If the <chart_spec_name> parameter is not passed, then an "unnamed" chart is initialized. If an "unnamed" chart has been previously initialized, then the previously initialized "unnamed" chart is reinitialized clearing all previously set values.

If the <chart_spec_name> parameter is passed, then a chart with the specified name is initialized. If a chart with the specified name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.

This subroutine sets a result value in the corresponding results Token field.

      PASS         <chart_type>               FIELD            SHARE? N
      PASS         <chart_spec_name>          FIELD            SHARE? N
      GOSUB    CHT .CHART INITIALIZE
      *        Check for error
      IF       CHT .CHART INITIALIZE          NE
  -- SteveFrizzell - 2010-02-15
Added:
>
>
 
META TOPICMOVED by="SteveFrizzell" date="1266349783" from="Main.ChartInit" to="Main.ChartInitialize"

Revision 32010-02-16 - SteveFrizzell

Line: 1 to 1
 
META TOPICPARENT name="ChartDirectorDesignerAPI"

.CHART INITIALIZE

Line: 13 to 13
  GOSUB CHT .CHART INIT

-- SteveFrizzell - 2010-02-15 \ No newline at end of file

Added:
>
>
META TOPICMOVED by="SteveFrizzell" date="1266349783" from="Main.ChartInit" to="Main.ChartInitialize"

Revision 22010-02-16 - SteveFrizzell

Line: 1 to 1
 
META TOPICPARENT name="ChartDirectorDesignerAPI"
Changed:
<
<

.CHART INIT

>
>

.CHART INITIALIZE

  This subroutine is called to initialize or reinitialize a chart spec.
Line: 8 to 8
  PieChart
Changed:
<
<
<chart_spec_name> is the name which will be used to uniquely identify the chart spec which is to be initialized. The name may be up to 30 characters in length. Passing this parameter is optional. If this parameter is not passed, then an "unnamed" chart is initialized. If an "unnamed" chart has been previously initialized, then the previously initialized "unnamed" chart is reinitialized clearing all previously set values. If this parameter is passed, then a chart with the specified name is initialized. If a chart with the specified name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.
      PASS         <chart_type>               FIELD            SHARE? N  (Required)
>
>
<chart_spec_name> is the name which will be used to uniquely identify the chart spec which is to be initialized. The name may be up to 30 characters in length. Passing this parameter is optional. If this parameter is not passed, then an "unnamed" chart is initialized. If an "unnamed" chart has been previously initialized, then the previously initialized "unnamed" chart is reinitialized clearing all previously set values. If this parameter is passed, then a chart with the specified name is initialized. If a chart with the specified name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.
      PASS         <chart_type>               FIELD            SHARE? N  (Required)
  PASS FIELD SHARE? N (Optional) GOSUB CHT .CHART INIT

Revision 12010-02-15 - SteveFrizzell

Line: 1 to 1
Added:
>
>
META TOPICPARENT name="ChartDirectorDesignerAPI"

.CHART INIT

This subroutine is called to initialize or reinitialize a chart spec.

<chart_type> must be a valid chart type. The valid values for <chart_type> are:

PieChart

<chart_spec_name> is the name which will be used to uniquely identify the chart spec which is to be initialized. The name may be up to 30 characters in length. Passing this parameter is optional. If this parameter is not passed, then an "unnamed" chart is initialized. If an "unnamed" chart has been previously initialized, then the previously initialized "unnamed" chart is reinitialized clearing all previously set values. If this parameter is passed, then a chart with the specified name is initialized. If a chart with the specified name has been previously initialized, then the previously initialized chart is reinitialized clearing all previously set values.

      PASS         <chart_type>               FIELD            SHARE? N  (Required)
      PASS         <chart_spec_name>          FIELD            SHARE? N  (Optional)
      GOSUB    CHT .CHART INIT

-- SteveFrizzell - 2010-02-15

 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback