 
  
   
  
  // X (date) axis
this.g.append('g')
      .attr('class', 'axis axis--x')
      .attr('transform', 'translate(0,' + this.height + ')')
      .call(d3Axis.axisBottom(this.x).ticks(1, '').tickValues([now]).tickSize(-this.height))
      .select('.domain').remove(); // Remove the main bar of the axis
this.g.append('g')
      .attr('class', 'axis axis--x')
      .attr('transform', 'translate(0,' + this.height + ')')
      .call(d3Axis.axisBottom(this.x)); 
  
   
  
   
  
   
  
   
  
   
  
   
  
   
  
  