Bokeh hovertool python. plotting import figure, output_file, show from bokeh.
Bokeh hovertool python. Adding hovertool to a second Y axis with bokeh python.
Bokeh hovertool python plotting import figure from bokeh. Bokeh toolbars can have at most one active tool from each kind of gesture (drag, scroll, tap). 4 and Bokeh 0. models import HoverTool, Range1d output_not If you pass data directly to glyph methods vbar, etc. models. py Bokeh toolbars can have at most one active tool from each kind of gesture (drag, scroll, tap). A list of names to query for. models import HoverTool from bokeh. models import ColumnDataSource from bokeh. The problem is that rather than showing a formatted date the hover tool displays numbers like 1. It provides a wide range of tools and features to create complex plots with ease. Python Bokeh -- Incorporate HoverToolTip into Bar Chart by using DataFrame Columns. 4, the built-in hover tool does not have such a mode. Tooltips are small pop-up boxes that I am plotting very many points in Bokeh, and I have added the HoverTool to the list of tools of the figure, so that the mouse shows the x,y coordinates of the mouse when close to a glyph. This is Bokeh 多个HoverTools对不同线的应用 (Bokeh) 阅读更多:Bokeh 教程 在本文中,我们将介绍如何使用Bokeh库来创建多个HoverTools,以实现对不同线条的悬停效果。 Bokeh是一个强大的Python库,用于交互式可视化和数据探索。 Sep 5, 2020 · Hi! I have similar problem as mentioned in an older question: Hover-over tooltips on network edges. But at first let's see how to install Bokeh in Python. I want to create separate HoverTool tooltips for edges and nodes in graph created in networkx. io import output_file, show from bokeh. g. io import output_file from bokeh. I would like the hover tool to display the name of the column that originated that data and also some information from other columns not plotted. Mar 1, 2018 · so I'm making a dual histogram, like a profit and a loss. models import ColumnDataSource, NumeralTickFormatter from bokeh. By tapping on one of the points in the plot, I'd like all points sharing the same attribute in the Mar 8, 2024 · 💡 Problem Formulation: Data visualization is crucial in understanding complex datasets. HoverTool( tooltips=[ ("index", "@index"), ('Name', '@name') ] ) By the way, you don't need to to import bokeh. . Bokeh is a powerful Python library for creating interactive visualizations for modern web browsers. I tried to implement it but the server callback doesn’t get called. then Bokeh will create a CDS for that data under the covers, but only with the just the data you pass to the glyph function (i. This is achieved via a ColumnDataSource. Dict (String, Any). always_active would fix this, but it appears that this functionality is not implemented. File: ThreePointAttVsPctHover. At the lowest bokeh. objects import HoverTool bp. I am not really understanding what you want to display, but I will paste example code from Bokeh you can find in the page. when a circle glyph defines "x", "y" and "color" columns, adding a new point will add the x and y-coordinates to "x" and "y" columns and the color column will Mar 8, 2020 · I am a new python learner and am trying to make a plot with bokeh. html') fig = bp. formatters import DatetimeTickFormatter from bokeh. 0 student 1 1 4. While many plotting libraries are available in Python, Bokeh stands out for its flexibility and interactivity. Sep 1, 2024 · The ability to create clear, compelling charts and graphics makes data and insights more accessible and actionable for stakeholders. default_overrides = {} # Type:. I want to display this information at a fixed position even if the visible Bokeh Libraries from bokeh. Bokeh hover tooltip to show data from a different Jul 19, 2018 · As pointed out here: Python Bokeh HoverTool formatters error: "unexpected attribute 'formatters' to HoverTool" version 0. Related. 5. from bokeh. May 9, 2018 · I’ve made a figure using Python 3. My own data consists of names of people, and their profile pictures. Jul 20, 2018 · from motion_detector import df from datetime import datetime as dt from bokeh. Both MultiLine and Plot are low level building blocks. Is there any way to specify the formatting of the values Bokehを使った経緯. io import show, output_notebook from bokeh. There is a y v class PanTool (Drag): ''' *toolbar icon*: |pan_icon| The pan tool allows the user to pan a Plot by left-dragging a mouse, or on touch devices by dragging a finger or stylus, across the plot region. plotting import figure, output_file, show from bokeh. Bokeh: Not able to Feb 21, 2020 · I am running a bokeh app and in the templates the background color is black and text color is white. f Jul 24, 2018 · import pandas as pd from bokeh. We can reference either Jan 25, 2019 · As of Bokeh 1. models import HoverTool, ColumnDataSource #新しいcolumnを追加。 Dec 18, 2014 · I have the following small example script making use of numpy and bokeh: import numpy as np import bokeh. One of these features is the HoverTool, which allows you to add tooltips to your plots. My intention is to display only a single one, using the attribute: mode = vline As the desired Oct 14, 2019 · I want to use Bokeh HoverTool with a Line/Scatter Plot. How do I extract data from a Bokeh ColumnDatasource. Indicates whether this model should be synchronized back to a Bokeh server when updated in a web browser. I’ve used the trick whereby I plot a scatter plot with alpha=0 on top of my timeseries which works great. models import Apr 12, 2020 · The actual code to make the hovertool executes in the browser, in javascript, where Python and Pandas and your DataFrame df do not exist. I'm new to bokeh and I just jumped right into using hovertool as that's why I wanted to use bokeh in the first place. Is there a way to hide the HoverTool icon in bokeh? If not, is there a better way to implement HoverTool on a DataFrame? Bokeh 中的 HoverTool 一开始,HoverTool 的语法看上去会有些复杂,但经过实践后,就会发现它们很容易创建。我们将 HoverTool 实例作为 tooltips 作为Python 元组传递给它,其中第一个元素是数据的标签,第二个元素引出我们要高亮显示的特定数据。 Apr 17, 2019 · I have datetime on x-axis and I was trying to plot it as a datetime, but apparently, according to this Bokeh can only have number axes. May 14, 2018 · As for now I see Bokeh supports HoverTool for multi_line glyph. 5 2018 C 1 5 2017 C 4 I cre Jul 29, 2022 · How to add HoverTool to a Data Table (Bokeh, Python) 2. In particular, I want to select a datapoint in the datasource by some means and then show further information for Jan 9, 2019 · There are two ways to add glyphs in Bokeh. Jan 22, 2019 · Python Bokeh - HoverTool: Coordinates for the figure and not data points. use :host CSS pseudo selector to access the root DOM element. plotting import figure, ColumnDataSource from bokeh. See this section for information about hover tools with Bar charts in modern Bokeh: Oct 24, 2019 · Hello, I would like to ask, if it’s possible to create tooltip, using HoverTool, where tooltip field will be 0 index of column in dataframe? I create pandas Dataframe, which then I send to ColumnDataSource. Right now, it shows both profit and loss May 12, 2022 · My code for the bokeh HoverTool is the following: p = figure( plot_height=250, x_axis_type='datetime', ) p. Bokeh Charts: Custom HoverTool variables for Bar Charts. However, the X and Y values are showing ??? instead of the actual values. In this in-depth guide, we‘ll dive into using Bokeh for data visualization in Python. For example, Plot is basically just a container for things that can draw. tooltips = [ ('name of salesperson','@name'), ('No. These properties can take the I plot lines from some columns of a dataframe. Jan 1, 2021 · 職場でのpython導入を画策中。エクセルで出来なくてPythonで出来ることがないかなー、と模索していたら、Bokehというライブラリを使ってインタラクティブなグラフが書けるとのこと。こちら… Aug 24, 2018 · This is a example of what I have so far, just for ilustration. I have a local directory of all profile pics, so whenever I get a list of names, names_ls, I have a method get_profile_pics which will search that directory* for the profile picture associated with the names on that list. , then Bokeh only sends exactly what you provide and nothing more. Oct 6, 2015 · In Bokeh 0. More precisely, I'm trying to make a plot like the one I made in seaborn but I'd like it to be more interactive, meaning : Jun 13, 2018 · The names attribute of the HoverTool model in the Bokeh Documentation:. Please, see # Modules needed from Bokeh. 0. Include the tooltips argument when calling the figure() function. 4. Installation To install this type the below command in the terminal. Multiple HoverTools for different lines (bokeh) 2. I cannot find the option to set hover color in the second method. The way that I did it was by generating dataframes with my desired networkx data by using the lines_source approach outlined on another question here, which gives you: Jan 20, 2017 · The code below comes from a jupyter notebook: from bokeh. Tooltips are small pop-up boxes that Jan 2, 2025 · Python Bokeh HoverTool: Add Interactive Tooltips Guide The HoverTool() in Bokeh is a powerful feature that adds interactive tooltips to your plots, making them more informative and engaging. Nov 20, 2019 · When several objects of the same size are in the same position on a chart, although only the top of the 'stack' is visible, I expect to see a description of all of them in the tooltip box. If this is undesirable, you can add renderers to an existing hover tool: from bokeh import plotting from bokeh. models as a variable. models 中的 HoverTool 类来添加 hover 工具。 from bokeh. When I create hover instance In my stacked barchart I have specified which tools I want in the toolbar. 10. Secure your code as it's written. Hot Network Questions Why are Mormons and Jehovah Bokeh is a fiscally sponsored project of NumFOCUS, a nonprofit dedicated to supporting the open-source scientific computing community. import numpy as np from bokeh. vbar(x=data_df['date']. without extra columns like "hp"). When the Jan 2, 2025 · The HoverTool() in Bokeh is a powerful feature that adds interactive tooltips to your plots, making them more informative and engaging. I got the example below to run on the latest bokeh (built from the github but it should be available later through pip). Some text is longer than others, and this results in some of the hover boxes being really long, especially as you move towards towards the center of the figure. The tooltip shows up, but the area value I am trying to display shows up as '???'. This causes my tooltips text color to be white and is not readable on hover. You’ll see how to set up configuration tools, including the HoverTool, providing various opportunities for stakeholders to interact with your plots! My goal is to add an HoverTool to my figure which displays the weekday by name. but I see also another value calls: "screen" I want to kind of disable the presentation of th Apr 3, 2015 · Will Zhang's answer will work, but you would end up with multiple hover tools. I want my Bokeh figure to show me the integer value of each datapoint when I hover over it. e. Mar 3, 2023 · The basic hover tool specification is optimized for simplicity rather than configurability. 0. Code - x = ['CPC Note that all bokeh’s components use shadow DOM, thus any included style sheets must reflect that, e. 0 we can use HoverTool for lines. extra_y_ranges = {"foo Jun 1, 2019 · 差支えなければbokehのバージョンと、実際に動かなかったソースコードを載せていただきたいです。 – yuji38kwmt May 9, 2017 · hover = bmo. Bokeh是一个用于创建交互式可视化的强大工具,而Holoview是对Bokeh的高级封装,使得可视化更加简单。 阅读更多:Bokeh 教程 Bokeh和Holoview Bokeh是一个用于绘制交互式可视化的Python库,它提供了丰富的工具和功能, Mar 11, 2015 · I have a simple graph of X-Y data points. Aug 22, 2019 · I have drawn a plot using bokeh, moreover, I have used the "hover" tool to see the value of the points. How can I remove the hovertool tool in the toolbar? Data example: Feb 1, 2019 · You can use TapTool callback like in the code below. 11 supports it but I was having trouble implementing it. How can I set custom datetime pattern on Bokeh hover formatter? 0. You’ll see how to set up configuration tools, including the HoverTool, providing various opportunities for stakeholders to interact with your plots! Jul 20, 2018 · I am trying to add a hover tooltip to my bokeh plot. These properties can take the Sep 10, 2024 · Understanding Bokeh and Tooltips. s1 = figure(x_axis_type="datetime", tools=TOOLS, plot_width=1000, plot_height=600) # Setting the second y axis range name and range s1. I have also found this solution on Stack Overflow python - Separate node and edge hover tools in Bokeh? - Stack Overflow. I want to hover over a blue bar (profit) and show only profit, and a red bar and show only loss. Mar 3, 2021 · Hi, According to Python callback for HoverTool - Community Support - Bokeh Discourse it would be possible to get a python callback on the server when a HoverTool callback is triggered. Sep 30, 2016 · I have a table that contains the number of times a student accessed an activity. May 8, 2018 · I have a ColumnDataSource like: MONTH | YEAR | TYPE | COUNT 1 2018 A 5 3 2019 A 3 2 2018 B 6 . I'm not quite sure what I'm doing incorrectly because the hovertool itself is working, but the values are not displaying. 459e12 which is pretty uninformative. Jun 8, 2023 · Bokeh is a library of Python which is used to create interactive data visualizations. models import HoverTool output_notebook() Store the data in a ColumnDataSource df = ColumnDataSource(contents) Specify the selection tools to be made available select_tools = ['box Python Bokeh HoverTool formatters error: "unexpected attribute 'formatters' to HoverTool" 7. Sep 10, 2024 · Understanding Bokeh and Tooltips. Show all x-axis values on plot - Bokeh. Adding hover tool tip to bokeh histogram. ©2022 Bokeh Contributors. plotting import figure, show from bokeh. Mar 14, 2018 · I have more than one line on a bokeh plot, and I want the HoverTool to show the value for each line, but using the method from a previous stackoverflow answer isn't working: https://stackoverflow. I am close to getting what I want but when I hover over the d Dec 9, 2019 · Python Bokeh tool - How to display hovertool with datetime formatter xaxis from bokeh? 1. This is the quickest: Import the HoverTool class from bokeh. Bokeh: Display only a single tooltip Format text alignment within Bokehs HoverTool May 4, 2022 · The problem is, that you never pass a source to the figure object, but the HoverTool is looking for data in the tot column. Dec 9, 2015 · Is it possible to add HoverTool to each field in bokeh table? An example of DataTable- And and example of how HoverTool works-I also described my problem here plot - How to add HoverTool to a Data Table (Bokeh, Python) - Stack Overflow--You received this message because you are subscribed to the Google Groups "Bokeh Discussion - Public" group. I've built a flask app which is plotting several graphs in Bokeh. 0 studen Sep 24, 2014 · I’ve got a timeseries for which I’d like to use the HoverTool to display information about. I’m trying to add HoverTool to the nodes and edges renderers, but it does not Note from maintainers: this question concerns the obsolete bokeh. head() activities studs 0 3. Nov 16, 2018 · So, we construct our networks differently, but I just solved this problem with one of my Bokeh rendered networks from networkx. Clicking elsewhere on the plot or clicking the ResetTool hides the tooltip. 6. 0 student 10 2 5. conda install bokeh Or pip install bokeh Import the HoverTool class from bokeh. But when I add a hovertool this seems to overwrite my command and adds a hovertool for every element in the stacked barchart. Jan 18, 2022 · Python Bokeh HoverTool formatters error: "unexpected attribute 'formatters' to HoverTool" 0. conda install bokeh Or pip install bokeh Mar 1, 2017 · The only issue with this is that the 30 different HoverTools appear on the right side of the plot which is ugly. The reason for this is that field specifiers such as @x mean "show the value in the CDS, for the glyph under the cursor". plotting import figure, outpu Jun 10, 2019 · In a bokeh app, I want to reuse the rendering of tooltips created by the HoverTool. plotting 模块来创建图表,并使用 bokeh. I want to use the hover tool and it is working when I scroll over the dots. models import LinearAxis, Range1d # Seting the params for the first figure. It seems impossible to use Python callbacks for a HoverTool (it must be always a JS callback, May 1, 2019 · How to add HoverTool to a Data Table (Bokeh, Python) 10. But can we use it for multi_line? For example, when running the following code, from bokeh. output_file('test. I prefer the second way as it gives more flexibility with Hovers and legends. This article addresses how to use Bokeh, a powerful Python visualization library, to create color scatter plots that not only present data points but also display additional information upon hovering over these points. 13. But the problem is that if I want to display particular value for point - it shows all the list of values instead of it. models import HoverTool 接下来,我们创建一个 scatter 图表并设置其属性。 Mar 10, 2017 · Right, hover_line_alpha is a higher level convenience. The HoverTool JS callback gets triggered and the datasource updated. plotting import figure, output_notebook Bokeh is a fiscally sponsored project of NumFOCUS, a nonprofit dedicated to supporting the open-source scientific computing community. plotting and bokeh. I thought HoverTool. I am using ColumnDataSource to set the plot source data, and 首先,我们需要导入 bokeh 及相关的模块和函数。在这个示例中,我们将使用 bokeh. The feature that sets Bokeh apart is its ability to easily implement interactivity in your visualization. These properties can take the Sep 24, 2016 · I'm emulating the Hovertool example here, where the hovertool displays images of snakes. For this you’ll employ Bokeh’s HoverTool() to show a tooltip when the cursor crosses paths with a glyph. models import May 10, 2021 · Adding hovertool to a second Y axis with bokeh python Hot Network Questions In Catholic atonement theology, if God can save Mary from all sin without Christ, what was the point of Christ's death? Feb 20, 2019 · I am working with Python 3. You can sinmply do: from bokeh. 4 to create a custom JavaScript callback in my plot. to have displayed in a hover tool) then you have to arrange for that by specifying a source argument for the glyph, and referring to the column names. Let's explore how to implement and customize hover tooltips in Bokeh. Apr 8, 2018 · I have a simple multiple data bar graph (non stacked) and wish to be able to be shown the (max) value of the bar chart upon a hover over with the mouse. If set, only renderers that have a matching value for their name attribute will be used. models import HoverTool and then Feb 24, 2019 · You have to set in the ColumnDataSource your values to display. Defines values to insert into non-coordinate columns when a new glyph is inserted into the ColumnDataSource columns, e. Include HoverTool() in the list passed to the tools argument when calling the figure() function. The TapTool callback uses the same HoverTool tooltip as in your example and you can further customise it as you wish. plotting as bp from bokeh. Now I'm plotting genes and what I want to achieve is multiple lines with the sa May 29, 2018 · I'm facing a problem related to display properly the tooltip of the HoverTool in my Bokeh Plotting. bokeh Hovertool tooltips showing date as number. I was wondering if the Learn about the fundamentals of the Bokeh library in this course, which will enable you to level up your Python data visualization skills by building interactive plots. Thanks to bigreddot for pointing out that passing that parameter only works in 0. If you want data to show up in a HoverTool then you will have to put a column in your CDS with that data, and reference it in the hover tool specification using the @column_name syntax. The website content uses the BSD License and is covered by the Bokeh Code of Conduct. But I In this lesson you will add hover actions to your last visualization. of Sales','@sale_num You can use Python callback only in Bokeh server applications. df_act5236920. You’ll see how to set up configuration tools, including the HoverTool, providing various opportunities for stakeholders to interact with your plots! What is the right way to change the color of a tooltip in Bokeh python? 4. 2 and Bokeh 1. Padding values overriding ColumnarDataSource. models level, you can do this by using the active_drag, active_inspect, active_scroll, and active_tap properties of Toolbar. plotting import ColumnDataSource, figure from bokeh. I'm having trouble linking the hover locati Dec 9, 2015 · Try converting a pandas DataFrame to html and then use the {safe} tag in the custom bokeh tooltip when you call it. To further explore the capabilities of the HoverTool(), see the HoverTool guide. models import ColumnDataSource, Range1d, LinearAxis, HoverTool from bokeh. If you pass literal lists/arrays (as you are doing above) to circle, etc. The hover tool is part of Bokeh’s toolbar. Pythonで公開APIにアクセスし、取得したデータを可視化したい; 取得できるデータは日々変わるので、「CSV→Excelでグラフ表示」は面倒 Jan 2, 2025 · Python Bokeh title(): Customize Plot Titles Guide; Python Bokeh Legend: Customize Plot Element Labels; Python Bokeh save(): Export Plots to Static Files Guide; Python Bokeh Pan and Zoom Tools Tutorial Guide; Python Bokeh HoverTool: Add Interactive Tooltips Guide; Python Bokeh ColumnDataSource Guide - Share Plot Data Learn about the fundamentals of the Bokeh library in this course, which will enable you to level up your Python data visualization skills by building interactive plots. Use the “@” symbol to include the name of the source for the data Jun 13, 2018 · You need to pass the source to the glyph functions, and refer to the column names for the coordinates. The hover tool only displays when a glyph is "hit" by the cursor. names: property type: List ( String ). There is none, and every time bokeh doesn't find any data, it shows ???. In Bokeh when using HoverTool, we end up using the "absolute name" hover = HoverTool() hover. We pass our HoverToolinstance a list of tooltips as Python tuples where the first element is the label for the data and the second references the specific data we want to highlight. models import HoverTool, PanTool, ResetTool, WheelZoomTool hover_tool = HoverTool(tooltips=[('col', '@x'),('row', '@y')]) # instantiate HoverTool without its renderers tools = [hover_tool, WheelZoomTool Apr 14, 2018 · I'm trying to make a an interactive plots with bokeh and the hover tool. If you want to control the appearance (really, at all) then you should use a custom tooltip template: Jun 8, 2023 · Bokeh is a library of Python which is used to create interactive data visualizations. HoverTool function in bokeh To help you get started, we’ve selected a few bokeh examples, based on popular ways it is used in public projects. syncable = True # Type: Bool. dt. Bellow is the code Adding hovertool to a second Y axis with bokeh python. The date is defined by the x-axis values. Bokeh even goes as far as describing itself as an interactive visualization library: Bokeh is an interactive visualization library that targets modern web browsers for presentation. 12. In my dataframe I have several columns with data, and 2 columns (let’s say it’s called “Mode” and “Date”) which contains value only on [0] index. Donations help pay for cloud hosting costs, travel, and other project needs. 15 - it has circle glyphs and when you hover over a circle, you see some tooltip based text. Unless that's changed by now, then please let me know. Mar 17, 2018 · HoverTool in Bokeh. There are several ways to enable tooltips in Bokeh. to_pydatetime(), top=data_df Bokeh 如何在数据表中添加悬停工具(Bokeh, Python) 在本文中,我们将介绍如何使用Bokeh和Python在数据表中添加悬停工具来增强数据可视化的交互性。 阅读更多:Bokeh 教程 Bokeh简介 Bokeh是一个用于构建交互性丰富的数据可视化的Python库。 Python Bokeh HoverTool formatters error: "unexpected attribute 'formatters' to HoverTool" 0 Python Bokeh Hover Tool giving: AttributeError: unexpected attribute 'tooltips' to Figure Learn about the fundamentals of the Bokeh library in this course, which will enable you to level up your Python data visualization skills by building interactive plots. 2. 1. How to use the bokeh. The tooltips argument accepts a string with a special syntax. The syntax of a HoverTool may seem a little convoluted at first, but with practice they are quite easy to create. In this article, we will discuss glyphs in Bokeh. ©2024 Bokeh Contributors. However, it is possible to exert control over which tool is active. If you want to send extra data columns (e. tools. The x values are datetime objects representing either days or weeks, and the y values are the value being tracked. charts API that was removed several years ago. Apr 21, 2020 · Python Bokeh HoverTool avoiding display NaN. default_values. Tooltips are based on the HoverTool. Clicking a circle displays the tooltip.
otbltx cjz bqsso tewygv fujuuj hcqum khcrsf ctrbyk ontmlw ekwvbf
{"Title":"What is the best girl
name?","Description":"Wheel of girl
names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}