You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const data = {
// This is the data you get back from the Domo Data API
rows: [
['Utah', 'Hello'],
['California', 'Hello'],
['South Dakota', 'Hi'],
['Illinois', 'Hi'],
['Wisconsin', 'Hi'],
['Washington', 'Hi'],
['Oregon', 'Hi']
],
// You provide the names, types, and mappings of your ordered columns
columns: [
{
type: DomoPhoenix.DATA_TYPE.STRING,
name: 'State',
mapping: DomoPhoenix.MAPPING.ITEM
},
{
type: DomoPhoenix.DATA_TYPE.STRING,
name: 'test',
mapping: DomoPhoenix.MAPPING.VALUE,
}
]
};
const options = { /* ... */ };
// Create the Phoenix Chart
const chart = new DomoPhoenix.Chart(DomoPhoenix.CHART_TYPE.MAP_UNITED_STATES, data, options);
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: