Click here to Skip to main content
15,911,141 members

Comments by muhammad sufiyan (Top 2 by date)

muhammad sufiyan 2-Jul-18 11:56am View    
when a user will create a new account, he will add a unique username/ID which only he will know. by the time of resetting password, this unique username/ID will be asked for authentication, which will verify the user's authentication
muhammad sufiyan 30-Jun-18 6:24am View    
Deleted
USE THIS CODE





<meta http-equiv="content-type" content="text/html; charset=UTF-8" />


link rel="stylesheet" type"text/css:" href="style.css">


Plotly.d3.csv('data_file.csv',function(err,rows)
{
console.log(rows);
var data = [];
for (let i = 0; i &lt; rows.length; i++)
{
data.push(rows.map(row => row [i]));
}
console.log(data);
Plotly.netPlot('chart',[{
z:data,
type: 'surface'
}]);
});