Keep, remove, drill sections
Learn how to edit sections of a chart in Vizpad.
Was this helpful?
Was this helpful?
telliusFrame.postMessage({
actionType: "filterBySelection",
vizId: vizId,
selectionPointType: "single", // single or multiple
values: value,
filterType: "Keep",
columns: columnName
}, "*");telliusFrame.postMessage({
actionType: "filterBySelection",
vizId: vizId,
selectionPointType: "single", // single or multiple
values: value,
filterType: "Remove",
columns: columnName
}, "*");telliusFrame.postMessage({
actionType: "drillByColumn",
vizId: "0d4abe5e-0758-4bdd-a71c-14e5f9d9a2b0",
drillByColumn: "Gender",
filters: [{
value: "Desktop",
column: "Device_Type",
operator: '='
},
{
value: "Direct",
column: "Source",
operator: '='
}]
}, "*");telliusFrame.postMessage({
actionType: "drillByHierarchy",
vizId: "0d4abe5e-0758-4bdd-a71c-14e5f9d9a2b0",
drillByColumns: ["county_name", "state_name"],
filters: [{
value: "Desktop",
column: "Device_Type",
operator: '='
},
{
value: "Direct",
column: "Source",
operator: '='
}]
}, "*");