The business world is reacting to the news that Tesco has racked up a £6.38bn loss – one of the biggest losses ever made by a UK company.
The beleaguered supermarket’s pre-tax losses for the year are even higher than the £5bn markets had been expecting.
There was also a big hit from the writedown of its property portfolio.
Here, in one interactive chart, is the path leading to these car-crash results. Hover over any of the bubbles on the visualisation to reveal information about that particular twist or turn in Tesco’s fortunes.
July - December 2014
January 2015 - April 2015
");
}
var width = parseInt(d3.select("#tescoChart").style("width"));
var csvFile = "/wp-content/uploads/2015/04/0421-tesco-desktop-55367c2e0ce53.csv";
if (width<768) {
var margin = { top: 25, right: 15, bottom: 25, left: 40 };
var pixelRatio = 8;
} else {
var margin = { top: 25, right: 25, bottom: 25, left: 40 };
var pixelRatio = 6;
};
var width = parseInt(d3.select("#tescoChart").style("width")) - margin.left - margin.right,
height = parseInt(d3.select("#tescoChart").style("height")) - margin.top - margin.bottom,
parseDate = d3.time.format("%d/%m/%Y").parse,
bisectDate = d3.bisector(function(d) { return parseDate(d.date); }).left;
d3.csv(csvFile, function(error, ftseData) {
ftseDataPerPixel = ftseData.length/width;
ftseDataResampled = ftseData.filter(function(d, i) {
if ((typeof d.text !== "undefined") || (i % Math.ceil(ftseDataPerPixel) == 0)) {
return i;
}
});
var minDate = parseDate(ftseDataResampled[0].date),
maxDate = parseDate(ftseDataResampled[ftseDataResampled.length - 1].date),
lastRecord = ftseDataResampled[ftseDataResampled.length-1],
firstRecord = ftseDataResampled[0],
x = d3.time.scale()
.domain(d3.extent(ftseDataResampled, function (d) {
return parseDate(d.date);
}))
.range([0, width]),
y = d3.scale.linear()
.domain([150,500]).range([height, 0])
line = d3.svg.line()
.x(function (d) {
return x(parseDate(d.date));
})
.y(function (d) {
return y(d.close);
});
var make_x_axis = function () {
if (width<568) {
return d3.svg.axis().scale(x).orient("bottom").ticks(d3.time.months).tickFormat(d3.time.format("%b"));
} else {
return d3.svg.axis().scale(x).orient("bottom").ticks(8);
}
},
make_y_axis = function () {
return d3.svg.axis().scale(y).orient("left").ticks(100);
};
if (width<568) {
xAxis = d3.svg.axis().scale(x).orient("bottom").ticks(d3.time.months).tickFormat(d3.time.format("%b"));
} else {
xAxis = d3.svg.axis().scale(x).orient("bottom").ticks(8);
}
yAxis = d3.svg.axis().scale(y).orient("left").ticks(10),
zoom = d3.behavior.zoom().x(x).scaleExtent([1, 100]).on("zoom", zoomed);
var toolTip = d3.select("body")
.append("div")
.attr("class", "tooltip")
.style("opacity", 0);
var sharePrice = d3.select("#tescoChart")
.append("div")
.attr("class", "sharePrice");
if (lastRecord.change > 0) {
theColor = "green";
} else if (lastRecord.change < 0) {
theColor = "red";
} else {
theColor = "black";
}
sharePrice.html(
'
There have been some big twists, too. Here are the top six from this year:
8 January
Tesco reveals turnaround plans including closure of 43 stores and names Matt Davies as new UK boss. In addition to the 43 stores being closed, 49 planned "very large stores" will not now be opened.
26 January
Tesco sells off Blinkbox Music to Australian firm Guvera for an undisclosed sum, but thought to be significantly less than the £10m the supermarket paid to acquire the service. Tesco bought digital service WE7 in 2012, rolling it into its digital entertainment arm, Blinkbox, and rebranding it under the new Blinkbox Music name.
10 February
Tesco enters growth for the first time in a year after it recorded sales growth of 0.3 per cent to £7.9bn for the 12 weeks to 1 February, according to Kantar Worldpanel.
16 February
Tesco announces it will cut up to 10,000 jobs as part of a radical overhaul by chief executive Dave Lewis aimed at halting a slide in profits.
Tesco employs around 314,000 staff. Around 6,000 of those at risk are threatened by the store closures.
17 February
Tesco appoints John Allan chairman. Allan began his career in marketing with Lever Brothers and Bristol-Myers, entering the food retail sector for the first time in 1977 when he joined Fine Fare where he was head of marketing, buying and retail operations.
In 2009 Allan joined Dixons Retail. Allan said it ?would be fun? to return to retail after a previous decade of experience. He was chairman of Dixons Retail until last year when the electronics retailer merged with the Carphone Warehouse group to form Dixons Carphone.
24 March
Investors prepare new legal claim over profits misstatement. The shareholders have hired a litigation specialist to seek compensation following a fall in the company's share price, after management revealed the £250m black hole in its profits.
Subscribe
Subscribe to the City AM newsletter to have our top stories delivered directly to your inbox.