Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -315,19 +315,14 @@ <h3>Numeric Data Enrichment</h3>
<p>Clicking on the "+" icon will open a menu of data enrichment options for numeric data.</p>
`,
buttons: [
{
text: 'Cancel',
action: function() { this.cancel(); },
classes: 'shepherd-button-secondary'
},
{
text: 'Next',
action: tour.next
}
],
attachTo: {
element: '.sales-table [data-gs-cell-index="1"]',
on: 'right'
on: 'top'
},
beforeShowPromise: function() {
// Return a promise that resolves when plus icons are available
Expand Down Expand Up @@ -373,16 +368,22 @@ <h3>Numeric Data Enrichment</h3>
<h3>Categorical Data Enrichment</h3>
<p>Now let's look at the options for categorical data.</p>
<p>Click on the "+" icon in the "Dominant item" column of the Monthly Sales Data table to see different enrichment options.</p>
<p>Options like frequency analysis and filtering are available for categorical columns.</p>
`,
attachTo: {
element: '.sales-table [data-gs-cell-index="4"]',
on: 'right'
on: 'top'
},
advanceOn: {
selector: '.sales-table [data-gs-cell-index="4"] .gs-plus-icon',
event: 'click'
},
buttons: [
{
text: 'Close',
action: function() { this.cancel(); },
classes: 'shepherd-button-secondary'
}
],
beforeShowPromise: function() {
// Return a promise that resolves when plus icons are available
return new Promise((resolve) => {
Expand Down