Looking at the page source, it turns out that the data in that graph is contained in a table element somewhere on the page. You can get the data you're looking for using Selenium and BeautifulSoup as below:
from bs4 import BeautifulSoup
from selenium import webdriver
driver = webdriver.Firefox()
driver.get("https://www.statista.com/statistics/264911/dells-net-revenue-since-1996/")
html = driver.page_source
soup = BeautifulSoup(html, "lxml")
chart = soup.find("tbody", {"role" : "alert"})
children = chart.find_all("tr")
data = []
for tag in children:
data_tuple = (tag.text[:3],tag.text[3:])
data.append(data_tuple)
print(data)
This produces the following output:
[("'96", '5.3'), ("'97", '7.8'), ("'98", '12.3'), ("'99", '18.2'), ("'00", '25.3'), ("'01", '31.9'), ("'02", '31.2'), ("'03", '35.3'), ("'04", '41.3'), ("'05", '49.1'), ("'06", '55.8'), ("'07", '57.4'), ("'08", '61.1'), ("'09", '61.1'), ("'10", '52.9'), ("'11", '61.5'), ("'12", '62.1'), ("'13", '56.9'), ("'14", '55.58'), ("'15", '54.1'), ("'16", '50.9'), ("'17", '61.6'), ("'18", '78.66')]
If you are still interested in scraping the tooltips from the chart, you might have to look at something like this where you'd have to get it to click on each of the elements so that the popup tooltip can be generated, then scrape the information as it's displayed.