Skip to content
Snippets Groups Projects
Select Git revision
  • Issue/2353-dropShapeFix
  • master default protected
  • gitkeep
  • dev protected
  • Issue/2583-treeBug
  • Hotfix/2562-organizations
  • Issue/2464-invalidateMeta
  • Issue/2484-filterExtracted
  • Issue/2309-docs
  • Issue/2462-removeTraces
  • Hotfix/2459-EncodingPath
  • Hotfix/2452-linkedDeletion
  • Issue/2328-noFailOnLog
  • Issue/1792-newMetadataStructure
  • v2.5.2-Hotfix2365
  • Hotfix/2365-targetClassWorks
  • Issue/2269-niceKpiParser
  • Issue/2295-singleOrganizationFix
  • Issue/1953-owlImports
  • Hotfix/2087-efNet6
  • v2.9.0
  • v2.8.2
  • v2.8.1
  • v2.8.0
  • v2.7.2
  • v2.7.1
  • v2.7.0
  • v2.6.2
  • v2.6.1
  • v2.6.0
  • v2.5.3
  • v2.5.2
  • v2.5.1
  • v2.5.0
  • v2.4.1
  • v2.4.0
  • v2.3.0
  • v2.2.0
  • v2.1.0
  • v2.0.0
40 results

README.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    To learn more about this project, read the wiki.
    PlotID_config.m 1.07 KiB
    %% Working with one config file
    
    %% add custom publish options to the config file
    % you can define custom options in the config file:
    
    configFileName = 'config.json';
    configObj = PlotID.config(configFileName);
    
    % This method adds the default config to your config file
    configObj.addPublishOptions('default');
    % You can change this in the json file, but be carefull no
    % argumentValidation will be done on options from the config file!
    
    %% Working with multiple (project dependend) config files
    % it is possible to use individual config files for each project
    % configP1.json, configP2.json ... 
    
    % Create a new config file programatically 
    customConfigFileName = 'configP1.json';
    configObj = PlotID.config(customConfigFileName);
    configObj.addPublishOptions('default');
    
    % Use the custom Config
    % you need to provide the name of your custom config file to tagplot as
    % well as to publish by using the Name-Value Pair:
    % 'ConfigFileName','YOURNAME.json'
    
    % [figs, IDs] = PlotID.TagPlot(figs, 'ConfigFileName','configP1.json');
    % Publish(DataPaths,scriptPath, 'ConfigFileName','configP1.json')