JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdn.flexmonster.com/flexmonster.js"></script>

<div id="pivot-container"></div>

JavaScript

var jsonData = [
  {billDate: {type: "date string"}, "type": {"type": "string"}},
  {billDate:"2020-02-05", "type": '1&&10&&12'},
  {billDate:"2019-10-15", "type": '2&&11&&15'},
  {billDate:"2015-12-22", "type": '2&&12&&16'},
  {billDate:"2019-11-09", "type": '1&&13&&18'}
  ];

var pivot = new Flexmonster({
	container: "pivot-container",
  customizeCell: customizeCellFunction,
  componentFolder: "https://cdn.flexmonster.com/",
		toolbar: true,
		report: {
    dataSource: {
    	data: jsonData,
      dataSourceType: "json"
    },
    slice: {
      reportFilters: [],
      rows: [{uniqueName:"billDate"}],
      columns: [
        {
          uniqueName: "[Measures]"
        }
      ],
      measures: [{uniqueName:"type"}]
    },
    options: {
      grid: {
       type: 'flat'
      }
    }
  }
	});

function customizeCellFunction(cell, data) {
    let resolveLinkProperties = function(data) {
      let link = 'wwww.somelink.com/${0}?param=${1}';
      let parts = data.member.caption.split('&&');
      let caption = parts[0];
      if (parts.length > 1) {
        parts.shift();
      }
      for(let i = 0; i < parts.length; i++) {
        link = link.replace('${' + i + '}', parts[i]);
      }
      return {caption: caption, link: link};
    };

		if (data.hierarchy && data.hierarchy.uniqueName == "type" && data.member) {
      let hl = resolveLinkProperties(data);
      cell.text = hl.caption;
    }
		
    
    // hl.link - is hyperlink with replaced parameters
}