bold markup code example

Example 1: Markdown heading

# Title 	//Creates a h1
## Title 	//Creates a h2
##### Title  //Creates a h5

Example 2: bold in markdown

**This will be bold**

Example 3: bold markup

stackedBar
    .tooltipThreshold(600)
    .width(containerWidth)
    .grid('horizontal')
    .isAnimated(true)
    .stackLabel('stack')
    .nameLabel('date')
    .valueLabel('views')
    .betweenBarsPadding(0.3)
    .on('customMouseOver', chartTooltip.show)
    .on('customMouseMove', function(dataPoint, topicColorMap, x, y) {
        chartTooltip.update(dataPoint, topicColorMap, x, y);
    })
    .on('customMouseOut', chartTooltip.hide);

container.datum(dataset.data).call(stackedBar);

chartTooltip
    .title('Testing tooltip');

tooltipContainer = d3.select('.metadata-group');
tooltipContainer.datum([]).call(chartTooltip);

Example 4: bold markup

stackedBar
    .tooltipThreshold(600)
    .width(containerWidth)
    .grid('horizontal')
    .isAnimated(true)
    .stackLabel('stack')
    .nameLabel('')
    .valueLabel('views')
    .betweenBarsPadding(0.3)
    .on('customMouseOver', chartTooltip.show)
    .on('customMouseMove', function(dataPoint, topicColorMap, x, y) {
        chartTooltip.update(dataPoint, topicColorMap, x, y);
    })
    .on('customMouseOut', chartTooltip.hide);

container.datum(dataset.data).call(stackedBar);

chartTooltip
    .title('Testing tooltip');

tooltipContainer = d3.select('.metadata-group');
tooltipContainer.datum([]).call(chartTooltip);

Tags:

Java Example