Настроить действие по нажатию в рамках одного столбца

Вопрос:

Можно настроить действие по нажатию в рамках одного столбца? Чтобы при нажатие на другие ничего не происходило

Ответ:

Да, вот пример конфига дэша с условием по колонке:

{
  frame: {
    h: 4,
    w: 12,
    x: 0,
    y: 0,
  },
  report: [
    {
      title: 'Отчет',
      output: 'xlsx',
      template: 'res:ds_88:.reports/template(1)',
    },
  ],
  dataSource: {
    koob: 'luxmsbi.seminar1',
    style: {},
    xAxis: 'country;season',
    yAxis: 'measures',
    filters: {
      country: true,
    },
    measures: [
      'sum(quantity):q1',
      'if(sum(quantity)<=window(min(sum(quantity))) , sum(quantity), 0 ):w',
    ],
    dimensions: [
      'season',
      'country',
    ],
  },
  onClickDataPoint: 'lpe:if(v = w , showDrilldownMenu(attachment(1)) , showDrilldownMenu(attachment(2)))',
  view_class: 'koob-table-simple',
  title: '',
}