<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: d3 Line graph dual y-axis in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/399822#M11907</link>
    <description>&lt;P&gt;We'd recommend to add a try-catch to catch an exception.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherwise, please share source code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 19 Apr 2018 07:26:57 GMT</pubDate>
    <dc:creator>v-viig</dc:creator>
    <dc:date>2018-04-19T07:26:57Z</dc:date>
    <item>
      <title>d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/397348#M11877</link>
      <description>&lt;P&gt;The following code compiles, but doesn't render a graph. Not sure why exactly it isnt working in power bi....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am using an input of "Date", "Value1", "Value2".&lt;BR /&gt;i am trying to plot date on x-axis, value1 on left y-axis, and value2 on right y-axis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;// Set the dimensions of the canvas / graph
var margin = {top: 30, right: 40, bottom: 30, left: 50},
    width = pbi.width - margin.left - margin.right,
    height = pbi.height - margin.top - margin.bottom;

var parseDate = d3.time.format("%d-%b-%y").parse;

// Set the ranges
var x = d3.time.scale().range([0, width]);
var y0 = d3.scale.linear().range([height, 0]);
var y1 = d3.scale.linear().range([height, 0]);

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
var xAxis = d3.svg.axis().scale(x)
    .orient("bottom").ticks(5);

var yAxisLeft = d3.svg.axis().scale(y0)
    .orient("left").ticks(5);

var yAxisRight = d3.svg.axis().scale(y1)
    .orient("right").ticks(5); 

//////////////////////////////////////////////////////

var valueline = d3.svg.line()
    .x(function(d) { return x(d.date); })
    .y(function(d) { return y0(d.Value1); });
    
var valueline2 = d3.svg.line()
    .x(function(d) { return x(d.date); })
    .y(function(d) { return y1(d.Value2); });

///////////////////////////////////////////////////////////////////

// Adds the svg canvas
var svg = d3.select("#chart")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
    .append("g")
    .attr("transform","translate(" + margin.left + "," + margin.top + ")");


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

  
  // ALTER: Replaced the d3.tsv function with the pbi variant: pbi.dsv
pbi.dsv(type, function(values) {
    data.forEach(function(d) {
        d.date = parseDate(d.date);
        d.Value1 = +d.Value1;
        d.Value2 = +d.Value2;
    });

  // Scale the range of the data
    x.domain(d3.extent(data, function(d) { return d.date; }));
    y0.domain([0, d3.max(data, function(d) {
		return Math.max(d.Value1); })]); 
    y1.domain([0, d3.max(data, function(d) { 
		return Math.max(d.Value2); })]);

    svg.append("path")        // Add the valueline path.
        .attr("d", valueline(data));

    svg.append("path")        // Add the valueline2 path.
        .style("stroke", "red")
        .attr("d", valueline2(data));

    svg.append("g")            // Add the X Axis
        .attr("class", "x axis")
        .attr("transform", "translate(0," + height + ")")
        .call(xAxis);

    svg.append("g")
        .attr("class", "y axis")
        .style("fill", "steelblue")
        .call(yAxisLeft);	

    svg.append("g")				
        .attr("class", "y axis")	
        .attr("transform", "translate(" + width + " ,0)")	
        .style("fill", "red")		
        .call(yAxisRight);

});
 


&lt;/PRE&gt;&lt;P&gt;it is similar to:&lt;/P&gt;&lt;P&gt;&lt;A href="http://bl.ocks.org/d3noob/e34791a32a54e015f57d" target="_blank"&gt;http://bl.ocks.org/d3noob/e34791a32a54e015f57d&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Apr 2018 16:33:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/397348#M11877</guid>
      <dc:creator>aar0n</dc:creator>
      <dc:date>2018-04-16T16:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/399822#M11907</link>
      <description>&lt;P&gt;We'd recommend to add a try-catch to catch an exception.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherwise, please share source code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2018 07:26:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/399822#M11907</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-04-19T07:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/401118#M11961</link>
      <description>&lt;P&gt;can you please elaborate "try-catch"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;also, i thought i did above.. is there anything else that might be needed?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Apr 2018 15:38:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/401118#M11961</guid>
      <dc:creator>aar0n</dc:creator>
      <dc:date>2018-04-20T15:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/402157#M11998</link>
      <description>&lt;P&gt;We'd recommend to take a look at try-catch syntax &lt;A href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/try...catch" target="_blank"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To debug this issue we should have a full source code along with pbiviz.json, tsconfig.json, etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Apr 2018 10:10:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/402157#M11998</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-04-23T10:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/402493#M12006</link>
      <description>&lt;P&gt;since the data is confidential, i am unable to post the powerbi file, etc. if there is any other example of a dual y-axis line graph, using d3, i would be happy to use it instead of the code above..&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Apr 2018 17:33:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/402493#M12006</guid>
      <dc:creator>aar0n</dc:creator>
      <dc:date>2018-04-23T17:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/403014#M12025</link>
      <description>&lt;P&gt;What verison of d3 do you use? Can you share pbiviz.json, package.json and tsconfig.json?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 08:27:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/403014#M12025</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-04-24T08:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/458723#M14126</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I am trying to create the dual y axis line chart from the d3 code :&amp;nbsp;&lt;A href="http://bl.ocks.org/d3noob/e34791a32a54e015f57d" target="_blank"&gt;http://bl.ocks.org/d3noob/e34791a32a54e015f57d&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Changed the&amp;nbsp;D3 code as per the D3JSVisuals instruction.&amp;nbsp; I notice that the path is not getting constructed. The lines always start from one point and not join from the previous point.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have put in the modified code as per custom visual instruction and the screenshot. Require help in resolving the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;var margin = {top: 30, right: 40, bottom: 30, left: 50},
width = pbi.width - margin.left - margin.right,
height = pbi.height - margin.top - margin.bottom;

var parseDate = d3.time.format("%d-%b-%y").parse;

var x = d3.time.scale().range([0, width]);
var y0 = d3.scale.linear().range([height, 0]);
var y1 = d3.scale.linear().range([height, 0]);

var xAxis = d3.svg.axis().scale(x)
.orient("bottom").ticks(5);

var yAxisLeft = d3.svg.axis().scale(y0)
.orient("left").ticks(5);

var yAxisRight = d3.svg.axis().scale(y1)
.orient("right").ticks(5);

/*var valueline = d3.svg.line()
.x(function(d) { return d.date; })
.y(function(d) { return d.close; })
.interpolate("linear");
*/
var valueline = d3.svg.line()
.x(function(d) { return x(d.date); })
.y(function(d) { return y0(d.close); })
.interpolate("cardinal");

var valueline2 = d3.svg.line()
.x(function(d) { return x(d.date); })
.y(function(d) { return y1(d.open); });

var svgCont = d3.select("#chart")
.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", 
"translate(" + margin.left + "," + margin.top + ")");

// Get the data
pbi.dsv(function(data) {

data.forEach(function(d) {
d.date = parseDate(d.date);
d.close = +d.close;
d.open = +d.open;
});

// Scale the range of the data
x.domain(d3.extent(data, function(d) { return d.date; }));
y0.domain([0, d3.max(data, function(d) {
return Math.max(d.close); })]); 
y1.domain([0, d3.max(data, function(d) { 
return Math.max(d.open); })]);

svgCont.append("path") // Add the valueline path.
.attr("class","line")
.attr("d", valueline(data));

/*svg.append("path") // Add the valueline2 path.
.style("stroke", "red")
.attr("d", valueline2(data));*/

svgCont.append("g") // Add the X Axis
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);

svgCont.append("g")
.attr("class", "y axis")
.style("fill", "steelblue")
.call(yAxisLeft);

svgCont.append("g") 
.attr("class", "y axis") 
.attr("transform", "translate(" + width + " ,0)") 
.style("fill", "red") 
.call(yAxisRight);

});&lt;/PRE&gt;</description>
      <pubDate>Tue, 10 Jul 2018 10:51:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/458723#M14126</guid>
      <dc:creator>sriksrin</dc:creator>
      <dc:date>2018-07-10T10:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/458725#M14127</link>
      <description>&lt;P&gt;Hi, I am also facing the same problem. I am using the custom visual D3JSVisuals and embedding the D3 code into it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get to see that the lines always start from the same point and not from the previous point. Can't figure where mistake is going on.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Request your help in the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;D3 Version : V3&lt;/P&gt;&lt;P&gt;Custom Visual: D3JSVisual&lt;/P&gt;&lt;P&gt;D3 Code:&amp;nbsp;&lt;A href="http://bl.ocks.org/d3noob/e34791a32a54e015f57d" target="_blank"&gt;http://bl.ocks.org/d3noob/e34791a32a54e015f57d&lt;/A&gt;&lt;/P&gt;&lt;P&gt;PBI Code :&lt;/P&gt;&lt;PRE&gt;var margin = {top: 30, right: 40, bottom: 30, left: 50},
    width = pbi.width - margin.left - margin.right,
    height = pbi.height - margin.top - margin.bottom;

var parseDate = d3.time.format("%d-%b-%y").parse;

var x = d3.time.scale().range([0, width]);
var y0 = d3.scale.linear().range([height, 0]);
var y1 = d3.scale.linear().range([height, 0]);

var xAxis = d3.svg.axis().scale(x)
    .orient("bottom").ticks(5);

var yAxisLeft = d3.svg.axis().scale(y0)
    .orient("left").ticks(5);

var yAxisRight = d3.svg.axis().scale(y1)
    .orient("right").ticks(5); 

/*var valueline = d3.svg.line()
    .x(function(d) { return d.date; })
    .y(function(d) { return d.close; })
	.interpolate("linear");
*/
var valueline = d3.svg.line()
    .x(function(d) { return x(d.date); })
    .y(function(d) { return y0(d.close); })
	.interpolate("cardinal");
    
var valueline2 = d3.svg.line()
    .x(function(d) { return x(d.date); })
    .y(function(d) { return y1(d.open); });
  
var svgCont = d3.select("#chart")
    .append("svg")
        .attr("width", width + margin.left + margin.right)
        .attr("height", height + margin.top + margin.bottom)
    .append("g")
        .attr("transform", 
              "translate(" + margin.left + "," + margin.top + ")");

// Get the data
pbi.dsv(function(data) {
   
 data.forEach(function(d) {
        d.date = parseDate(d.date);
        d.close = +d.close;
        d.open = +d.open;
    });

    // Scale the range of the data
    x.domain(d3.extent(data, function(d) { return d.date; }));
    y0.domain([0, d3.max(data, function(d) {
		return Math.max(d.close); })]); 
    y1.domain([0, d3.max(data, function(d) { 
		return Math.max(d.open); })]);

    svgCont.append("path")        // Add the valueline path.
        .attr("class","line")
        .attr("d", valueline(data));

    /*svg.append("path")        // Add the valueline2 path.
        .style("stroke", "red")
        .attr("d", valueline2(data));*/

    svgCont.append("g")            // Add the X Axis
        .attr("class", "x axis")
        .attr("transform", "translate(0," + height + ")")
        .call(xAxis);

    svgCont.append("g")
        .attr("class", "y axis")
        .style("fill", "steelblue")
        .call(yAxisLeft);	

    svgCont.append("g")				
        .attr("class", "y axis")	
        .attr("transform", "translate(" + width + " ,0)")	
        .style("fill", "red")		
        .call(yAxisRight);
  
});&lt;/PRE&gt;</description>
      <pubDate>Tue, 10 Jul 2018 10:59:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/458725#M14127</guid>
      <dc:creator>sriksrin</dc:creator>
      <dc:date>2018-07-10T10:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/459493#M14153</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/3821"&gt;@jppp&lt;/a&gt;&amp;nbsp;Can you help with this issue? It seems devs use D3.JS visual.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;pbicvsupport@microsoft.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 07:26:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/459493#M14153</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-07-11T07:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/459759#M14159</link>
      <description>&lt;P&gt;I managed to get the code working and basically the trick is in how the data is presented to and used by D3js.&lt;BR /&gt;In this case the &lt;STRONG&gt;date&lt;/STRONG&gt; column: I have kept it as a string,&amp;nbsp;e.g. '26-Mar-18' and add a derived column, convert&amp;nbsp;as a date type and use that for the 'sort-by' column.&lt;/P&gt;&lt;P&gt;After that the line &lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;d3.time.format(&lt;/SPAN&gt;&lt;SPAN class="string"&gt;"%d-%b-%y"&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;).parse;&lt;/FONT&gt; will correctly parse the column to dates that can be used by the d3js axis.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you need some more explanation; I got a PBIX file that I can share if needed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-JP&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 11:07:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/459759#M14159</guid>
      <dc:creator>jppp</dc:creator>
      <dc:date>2018-07-11T11:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/459942#M14164</link>
      <description>&lt;P&gt;i would really appreciate if you could share the file!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 14:19:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/459942#M14164</guid>
      <dc:creator>aar0n</dc:creator>
      <dc:date>2018-07-11T14:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/460072#M14165</link>
      <description>&lt;P&gt;You should be able to download it &lt;A href="https://jppporg-my.sharepoint.com/:u:/g/personal/mail_datascenarios_nl/ESlhTfNxa1VInSYgNH_5wl0BJ-cJv0lNen_92wZBoQRtig?e=1l8OrG" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have questions, feel free.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 16:09:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/460072#M14165</guid>
      <dc:creator>jppp</dc:creator>
      <dc:date>2018-07-11T16:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/486049#M14911</link>
      <description>&lt;P&gt;Hi JP,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;While i am trying what you have said, it would really be very helpful to share the pbix file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Srikanth&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2018 07:50:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/486049#M14911</guid>
      <dc:creator>sriksrin</dc:creator>
      <dc:date>2018-08-10T07:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/486313#M14917</link>
      <description>&lt;P&gt;PBIX has been attached by Jan Pieter. See link above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;pbicvsupport@microsoft.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2018 12:16:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/486313#M14917</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-08-10T12:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/487866#M14951</link>
      <description>&lt;P&gt;&lt;A href="https://github.com/tcd1nc/DualYAxesChart" target="_blank"&gt;https://github.com/tcd1nc/DualYAxesChart&lt;/A&gt; for alternative&lt;/P&gt;</description>
      <pubDate>Mon, 13 Aug 2018 09:26:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/487866#M14951</guid>
      <dc:creator>tcd1nc</dc:creator>
      <dc:date>2018-08-13T09:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/491061#M15042</link>
      <description>&lt;P&gt;Thanks jppp for sharing the pbix file. I am still puzzled as the new duplicate column didnot change any data after been applied to sort. Can u share some more details on the fix.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Aug 2018 07:18:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/491061#M15042</guid>
      <dc:creator>sriksrin</dc:creator>
      <dc:date>2018-08-16T07:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: d3 Line graph dual y-axis</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/834688#M21264</link>
      <description>&lt;P&gt;Can you reshare PBIX file ? cause the link you posted is no longer available.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2019 06:04:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/d3-Line-graph-dual-y-axis/m-p/834688#M21264</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-01T06:04:56Z</dc:date>
    </item>
  </channel>
</rss>

