Skip to content
Friday 21 August 2026London --:--Frankfurt --:--Zurich --:--
NewslettersSearchEN · DE · FR
MorningWire

European business, markets and politics

FTSE 100
10,778.88
+0.29%
DAX
26,094.73
+0.43%
CAC 40
8,472.53
+0.23%
STOXX 50
6,451.85
+0.46%
  • Europe
  • Markets
  • Business
  • Economy
  • Regulation
  • Politics
  • Opinion
More
GermanyFranceEU InstitutionsCompetitionPublic AffairsBankingTechnologyEnergy
  • Germany
  • France
  • Europe
  • Markets
  • Business
  • Economy
  • Regulation
  • Politics
  • Opinion
  • DE
Wednesday 22 April 2015 2:55 am

Tesco: The decline and fall of the supermarket giant and its share price in one chart

By: Billy Ehrenberg

Add as a preferred source on Google

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.

Mousewheel in/out on graph to zoom, Click and drag left-right to pan

"); } else { jQuery(".chartPaint").html("

To make it easier for mobile users, we've broken the chart up into two time periods.

July - December 2014

January 2015 - April 2015

"); }

d3.selection.prototype.moveToFront = function() { return this.each(function(){ this.parentNode.appendChild(this); }); };

d3.selection.prototype.moveToBack = function() { return this.each(function() { var firstChild = this.parentNode.firstChild; if (firstChild) { this.parentNode.insertBefore(this, firstChild); } }); };

var width = parseInt(d3.select("#tescoChart").style("width")); var csvFile = "/wp-content/uploads/2015/04/0421-tesco-desktop-55367c2e0ce53.csv?_cbv=2"; if (width 0) { theColor = "green"; } else if (lastRecord.change ' + lastRecord.date + ': ' + lastRecord.close + 'p (' + lastRecord.change + '%)

');

var svg = d3.select('#tescoChart') .append("svg:svg") .attr('width', width + margin.left + margin.right) .attr('height', height + margin.top + margin.bottom) .append("svg:g") .attr("class","tescoChart") .attr("transform", "translate(" + margin.left + ",15)") .call(zoom);

var axes = svg.append("svg:g") .attr("class","axesGroup");

axes.append("svg:g") .attr("class", "x axis") .attr("transform", "translate(0, " + height + ")") .call(xAxis);

axes.append("g") .attr("class", "y axis") .call(yAxis);

axes.append("g") .attr("class", "x grid") .attr("transform", "translate(0," + height + ")") .call(make_x_axis() .tickSize(-height, 0, 0) .tickFormat(""));

axes.append("g") .attr("class", "y grid") .call(make_y_axis() .tickSize(-width, 0, 0) .tickFormat(""));

var ftseGraph = svg.append("g") .attr("class","ftseGraph");

var focus = ftseGraph.append("circle") .attr("r", 10.5) .attr("class", "focus") .style("display", "none");

ftseGraph.append("rect") .attr("class", "overlay") .attr("width", width) .attr("height", height) .style("fill", "none") .style("pointer-events", "all") .on("mouseover", function() { focus.style("display", null); }) .on("mouseout", function() { focus.style("display", "none"); if (lastRecord.change > 0) { theColor = "green"; } else if (lastRecord.change ' + lastRecord.date + ': ' + lastRecord.close + 'p (' + lastRecord.change + '%)

'); }) .on("mousemove", mousemove);

var clip = ftseGraph.append("svg:clipPath") .attr("id", "clip") .append("svg:rect") .attr("x", 0) .attr("y", 0) .attr("width", width) .attr("height", height);

var chartBody = ftseGraph.append("g") .attr("clip-path", "url(#clip)");

chartBody.append("svg:path") .datum(ftseDataResampled) .attr("class", "line") .attr("d", line);

var circles = chartBody.selectAll(".circ") .data(ftseDataResampled) .enter().append("circle") .attr("class", function(d) { if ((typeof d.size!= "undefined") && (d.size==3)) { return "circ major"; } else { return "circ"; } }) .attr("r", function(d) { if (typeof d.size!= "undefined") { return (d.size*pixelRatio); } else { return 0; } }) .attr("cx", function(d) { return x(parseDate(d.date)); }) .attr("cy", function(d) { return y(d.close); }) .on("mouseover", mouser) .on("mouseout", mouseGone);

var majors = svg.selectAll("circle.major"); majors.moveToFront();

function mouseGone() { focus.moveToBack(); toolTip.transition() .duration(500) .style("opacity", 1); toolTip.transition() .duration(200) .style("opacity", 0) }

function mousemove() { focus.style("display", null); var x0 = x.invert(d3.mouse(this)[0]), i = bisectDate(ftseDataResampled, x0, 1); d0 = ftseDataResampled[i - 1]; d1 = ftseDataResampled[i]; if (typeof d1 !="undefined") { d = x0 - parseDate(d0.date) > parseDate(d1.date) - x0 ? d1 : d0; update(d); } }

function update(d) { focus.attr("transform", "translate(" + x(parseDate(d.date)) + "," + y(d.close) + ")"); focus.attr("r", 10.5); if (d.change > 0) { theColor = "green"; } else if (d.change ' + d.date + ': ' + d.close + 'p (' + d.change + '%)

'); }

function mouser(d) { toolTip.transition() .duration(500) .style("opacity", 0); toolTip.transition() .duration(200) .style("opacity", 1); if ((typeof d.size!= "undefined") && (d.size == 3)) { toolTip.attr("class", "tooltip larger"); } else { toolTip.attr("class", "tooltip"); } if (d.change > 0) { theColor = "green"; } else if (d.change ' + d.date + '' + '
' + special + ' ' + d.close + 'p (' + d.change + '%)' + '
' + d.text + '

'); if (width > 568) { xco = d3.mouse(this)[0]; if (xco > (width/2)) { toolTip.style("left", (d3.event.pageX - 230) + "px") .style("top", (d3.event.pageY + 10) + "px"); } else { toolTip.style("left", (d3.event.pageX + 10) + "px") .style("top", (d3.event.pageY + 10) + "px"); }; } else { toolTip.style("left", "20%") .style("bottom", "100px"); } focus.style("display", null); focus.moveToFront(); focus.attr("transform", "translate(" + x(parseDate(d.date)) + "," + y(d.close) + ")") if (typeof d.size!= "undefined") { focus.attr("r", 6.5 + (d.size*pixelRatio)); } else { focus.attr("r", 10.5); } sharePrice.html( '

' + d.date + ': ' + d.close + 'p (' + d.change + '%)

'); }

function zoomed() { if (x.domain()[0] maxDate) { var xx = zoom.translate()[0] - x(maxDate) + x.range()[1]; zoom.translate([xx, 0]); } // resampler ftseDataPerPixel = ftseData.length/width; if (zoom.scale() == 1) { ftseDataResampled = ftseData.filter(function(d, i) { if ((typeof d.text !== "undefined") || (i % Math.ceil(ftseDataPerPixel) == 0)) { return i; } }); } else { ftseDataResampled = ftseData.filter(function(d, i) { if ((parseDate(d.date) > x.domain()[0]) && (parseDate(d.date)

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.

Share this article

  • Facebook
  • X
  • LinkedIn
  • WhatsApp
  • Email

Similarly tagged content:

Sections

  • Markets & Economics

Categories

  • Markets

Related Topics

  • Company
  • Tesco

Trending Articles

  • House prices in wealthy London boroughs fall by up to £300,000

  • As it happened: Miners fuel FTSE 100 recovery; oil jumps as Trump claims Strait of Hormuz

  • City law firm sues prominent Emirati business family

  • Amanda Blanc has worked her magic at Aviva

  • As it happened: FTSE 100 rallies after JD Sports drags on blue chips; oil jumps again

More from Morning Wire

  • Tesco ‘in talks’ to exit eastern Europe

    Retail
    Tesco storefront with shoppers entering and exiting, highlighting the brands popularity and bustling retail environment
  • Tesco Mobile breaches £600m debt facility after reporting failure

    Telecoms
    Overhead view of a brightly lit Tesco store interior with shoppers, product aisles, and Clubcard Prices signage.
  • Burnham’s crackdown on ‘price-gouging’ splits supermarkets 

    Retail
    Every Lidl helps: Tesco looses appeal in the supermarket logos dispute
  • Does the real economy care that much about AI?

    AI
    Tesco store exterior with festive decorations, highlighting its 10-year UK market share high and Q3 sales performance.
  • Will Drastic Dave live up to his name at Diageo?

    Retail
    Dave Lewis, former Tesco CEO, smiling in a supermarket aisle with products on shelves
  • Astrazeneca explores $400bn megadeal with US rival 

    Markets
    AstraZeneca building exterior with logo, glass facade, UK flag, and wildflowers in foreground.
  • For Albarino in the City, head to Humble Grape

    Toast the City
    Libby Albarino holding a bottle of Zarate wine and a glass by the ocean
  • Back to basics: Sainsbury’s gradual retreat from the British high street

    Retail
    Sainsbury’s Cobham. Credit: David Parry/PA Media Assignments.
MorningWire

Independent European business, markets and political news for decision-makers.

Morning Briefing

Europe

  • Germany
  • France
  • EU Institutions
  • Europe

Business

  • Markets
  • Business
  • Economy
  • Regulation
  • Competition
  • Public Affairs

Editorial

  • Opinion
  • Editorial Policy
  • Corrections
  • Contact

Company

  • About Morning Wire
  • Privacy Policy
  • Terms of Use
  • Cookie Policy
© 2026 Morning Wire Ltd · Published by Morning Wire Media, Bahnhofstrasse 65, 8001 Zürich, Switzerland
Privacy · Terms · Cookies · Facebook