Use subscript variable and not subscript value in graphs.csv
#616
-
|
Hi all, We have a VGD file that contains all the graphs linked to our model. We are automating the generation of the file We have a subscript for the countries and regions with about 70 possible values. For now, one line in the CSV file describes one graph with one specific value of the subscript. Is it possible to enter directly the subscript variable and then select the value in the app? Example with subscript value: Expected result with subscript variable: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi @LSarribouette, currently there is no special support in SDEverywhere to directly handle what you are describing. This is one of those cases that falls outside the set of common cases that SDEverywhere provides support for out of the box. Since there's no one-size-fits-all template, this is a case where you can customize your app (or even fork the core plugin packages) to achieve your desired functionality. The relevant parts of the system are the It sounds like you already have some code/scripts that generate the If you want to get more sophisticated, you are free to fork the Let me know if any of this is helpful. |
Beta Was this translation helpful? Give feedback.
Hi @LSarribouette, currently there is no special support in SDEverywhere to directly handle what you are describing. This is one of those cases that falls outside the set of common cases that SDEverywhere provides support for out of the box. Since there's no one-size-fits-all template, this is a case where you can customize your app (or even fork the core plugin packages) to achieve your desired functionality.
The relevant parts of the system are the
@sdeverywhere/plugin-configpackage (which handles converting theconfigfiles into the "specs" that are read by your generated library/app code) and thetemplate-defaultcode. Neither of those currently is set up for the case you describe (h…