Need a special offer?Find out if your project fits.
+

disable drill through funtion?

Answered
David Chen asked on May 5, 2016

is there a way I can disable the drill through? 
 
jsfiddle example please thanks

5 answers

Public
Dmytro Zvazhii Dmytro Zvazhii Flexmonster May 5, 2016

Hello David,
Thank you for your question. There is a parameter called "drillThrough" in the component which is in charge for it. For more information please look through our docs (http://www.flexmonster.com/api/, see setOptions()). Here is an example how to use it https://jsfiddle.net/Uaman23/en1yao5m/ .
Thank you.
Best regards,
Dmytro.

Public
David Chen May 5, 2016

doesn;t seem to be working for me
 
SyntaxEditor Code Snippet

expandAll: true,
  showHeaders: false,
  showReportFiltersArea: false,
  drillThrough: false
};
Public
David Chen May 5, 2016

SyntaxEditor Code Snippet

"
<div id='pivotContainer'></div> 
<script type='text/javascript' src='...'></script>
<script type='text/javascript'>
var jsondata = " + Query + ";

var report = {
  configuratorActive: false,
  data: jsondata,
  classicView: true,
  rows: [ ... ],
  columns: [ ... ],
  measures: [ 
...
 ],
  expandAll: true,
  showHeaders: false,
  showReportFiltersArea: false,
  drillThrough: false
};

report.licenseKey = '...';

flexmonster.embedPivotComponent('...', 'pivotContainer','100%', '650', report, true);
</script>
"
Public
Dmytro Zvazhii Dmytro Zvazhii Flexmonster May 6, 2016

Please open this sample (https://jsfiddle.net/en1yao5m/) and double-click on any cell. Drill through is disabled.
Could you please edit this sample and show how to reproduce the problem?

Public
Tanya Gryshko Tanya Gryshko Flexmonster December 7, 2016

Hello David and all Flexmonster users,
After the release of version 2.3, we have prepared the updated sample: https://jsfiddle.net/flexmonster/byoe621f/.
Regards,
Tanya

Please login or Register to Submit Answer