Questions tagged [sparklines]

Sparklines are small inline charts. There is a jQuery plugin that generates these in the browser, as well as a Google Sheets function. Please specify the technology being used (jQuery, google sheets, etc.) to generate the sparkline.

Sparklines are small inline charts.

jQuery Sparklines is a jQuery plugin that generates sparklines directly in the browser using data supplied either inline in the HTML, or via JavaScript.

There is also a Google sheets function that generates sparklines in a cell.

238 questions
0
votes
0 answers

Get data from controller and use in jquery/javascript

So i'm trying to generate a graph with data from my angularJS controller. This graph-library uses jquery. jquery.sparkline documentation From what i can tell, there are two ways of entering data here that works.
Joel
  • 5,732
  • 4
  • 37
  • 65
0
votes
1 answer

Google Sheets Sparklines - colour each bar in a barchart

I have a collection of sparklines that looks like this: And I want it to look like this: Now, everyday of the week is assigned a colour. Does anyone know if this is possible? Feel free to edit my spreadsheet…
semiflex
  • 1,176
  • 3
  • 25
  • 44
0
votes
1 answer

R add column for sparkline with value from each row vector

Start with a dataframe library(dplyr) library(sparkline) df <- data.frame(matrix(1:9, nrow = 3, ncol = 3)) X1 X2 X3 1 1 4 7 2 2 5 8 3 3 6 9 Would like to add a column 'spark' for use with sparkline: df <- df %>% mutate(spark =…
Vlad
  • 3,058
  • 4
  • 25
  • 53
0
votes
1 answer

extract specific json values from url and put as array

I want to extract specific values from Alpha Vantage API and want to display in a Sparkline chart. I have a JSON file like - { "Meta Data": { "1. Information": "Intraday Prices and Volumes for Digital Currency", …
0
votes
3 answers

SVG memory footprint for a complicated page

I have a design that calls for a large number of small bar graphs (sparkline size). A typical page could easily have 60+ graphs showing 100+ datapoints per graph. Would the in-browser memory footprint of something like that be prohibitive? I could…
Matt
  • 2,140
  • 3
  • 16
  • 19
0
votes
1 answer

Passing data into React component

I am learning some React and Redux. I have a function that returns an array of people in another file called persons_list.js. It looks like this. export default function() { return [ { "name": "Michael Smith", …
jhaywoo8
  • 767
  • 5
  • 13
  • 23
0
votes
1 answer

In a G sheet having cells with data as sparklines is not showing sparklines when sent email through app script in html format

I am having a G sheet with cells having data in sparklines and i want to email the same as sparklines through app script in html. But when i sent email blank cells are dispalyed in email in place of sparklines. Could you please suggest any html code…
Surya K
  • 1
  • 1
0
votes
2 answers

jQuery Sparklines with CSS Transform

I'm using jQuery Sparklines on an html page which is scaled using transform: scale. Unfortunately, this causes the tooltip generated by jQuery Sparklines to be displayed in the wrong spot. For example, the following code...