Re: [tw5] Re: Google Charts in TiddlyWiki

2022-07-17 Thread andrewg_oz
I've just uploaded an updated wiki. No further changes to the macro or 
parser, but a couple of new demo tiddlers under the renamed "Advanced 
Examples" tab:

"Data In Field": where the data is stored in a tiddler field
"Macro Generated Data": where the data is generated by a macro (a pie chart 
of how many of my examples are 'basic' and how many are 'advanced')

Cheers,
Andrew
On Monday, 18 July 2022 at 1:42:57 am UTC+8 arunn...@gmail.com wrote:

> Hi Springer
>
> That's because of some incompatibility between Krystal and multicolumn 
> plug in...I have set up this wiki just for demo purpose - each demo I have 
> made into a seperate story using ensemble feature of multicolumn plug in 
> (which include the use of Krystal along with multicolumn plug in) - each 
> demo can be accessed via the topbar or ensemble tiddler. You can just 
> ignore the error message for the time being. I have raised a GitHub issue 
> regarding this in Krystal GitHub repo. But the creator haven't responded 
> yet. Error message will disappear if Krystal plug in is disabled.
>
> Arun  
>
> On Sun, 17 Jul 2022, 22:58 springer,  wrote:
>
>> Alas, I'm getting a red error box on load:
>>
>> [image: red error budget.jpg]
>>
>> On Saturday, July 16, 2022 at 5:06:38 PM UTC-4 arunn...@gmail.com wrote:
>>
>>> Thanks Charlie. I need a similar chart for my budget wiki. 
>>>  Will ask for your help, 
>>> once I have a solid idea about the implementation.
>>>
>>> On Sunday, July 17, 2022 at 12:28:59 AM UTC+5:30 cj.v...@gmail.com 
>>> wrote:
>>>
 G'day Arun,

 I have not looked at how Andrew has set things up, but I did look at 
 the data source for his pie chart.

 You should be able to do something similar to what I have done with my 
 project (i.e. provide a data tiddler that dynamically puts together the 
 data), a bit like in these screenshots from my project:

 [image: Screenshot 2022-07-16 3.54.09 PM.png]
 [image: Screenshot 2022-07-16 3.54.27 PM.png]

 [image: Screenshot 2022-07-16 3.54.56 PM.png]
 On Friday, July 15, 2022 at 6:03:03 PM UTC-3 arunn...@gmail.com wrote:

> Hi Andrew,
>
> This looks interesting. Is there a way to extract the tiddler field 
> values for charts instead of manually typing the data .
>
> Thanks,
> Arun
> On Saturday, July 9, 2022 at 12:52:54 PM UTC+5:30 andrewg_oz wrote:
>
>> Hi Springer,
>>
>> Dropbox was working, but it was because I was logged in. Logging out 
>> just shows code for me too. I shouldn't have been so lazy to not use my 
>> own 
>> hosting (it's just been a while since I used it):
>>
>> http://www.scss.com.au/family/andrew/tiddlywiki/GoogleCharts.html
>>
>> Now with more examples of selection handling and data transclusion!
>>
>> On Monday, 4 July 2022 at 12:05:03 am UTC+8 springer wrote:
>>
>>> Andrew,
>>>
>>> This is quite beautiful! I haven't tried to work with it, but I can 
>>> imagine many uses for such graphs. Thanks for taking the time to set up 
>>> a 
>>> sample site with so many examples!
>>>
>>> If you have a tiddlyhost account, might you post a version there, so 
>>> that this thread can offer a pointer that doesn't require a download? 
>>> (Your 
>>> wording suggests you expected the graphs could be "quickly seen" 
>>> without 
>>> downloading, but the dropbox link just yields the html file.)
>>>
>>> -Springer
>>> On Saturday, July 2, 2022 at 5:51:52 AM UTC-4 andrewg_oz wrote:
>>>
 I recently needed some way to get a line graph in one of my 
 TiddlyWikis. I found a plugin, but it didn't do a very good job. I 
 thought 
 it might be possible to use Google Charts, but I had no idea how I 
 might go 
 about doing that.

 A bit of searching located this post from last year:

 https://groups.google.com/g/tiddlywiki/c/kyfKmMGpZiQ/m/TeQNhDTNBQAJ

 This works, but has a lot of hard-coded stuff. I wanted something 
 more flexible.

 Using that post as the starting point, I've come up with a single 
 macro that uses separate tiddlers to hold the chart data. I have an 
 example 
 TiddlyWiki on my Dropbox:

 https://www.dropbox.com/s/px91n007zzdp8df/GoogleCharts.html?dl=0

 All the magic is in the "GoogleChart" macro.

 You can quickly see the demo charts, but it will need to be 
 downloaded to see 'behind the scenes'.

 I got this far mostly by trying random tiddlywiki syntax until 
 things worked. I'm not familiar with macros at all. I'd welcome any 
 feedback on how I've done things.

 Apart from that - do whatever you like with it!

 Cheers,
 Andrew

>>>

[tw5] Re: Google Charts in TiddlyWiki

2022-07-17 Thread andrewg_oz
I've just uploaded some updates for a couple of things:

1. There is a parser that can render tiddlers containing the JavaScript 
data arrays like WikiText tables. Just a cosmetic thing.
2. I've made the macro support data tables entered as WikiText tables. This 
breaks when fancy JavaScript things are required, but is good for simple 
data.

My goals for this project were two-fold:

1. An embedded system I've been developing produces data viewable using the 
Timeline chart type and I wanted to include examples of that chart in my 
TiddlyWiki that is documenting the project.
2. For  my own amusement I wanted to plot a line chart of my firmware size 
over time.
3. Since developing my macro I've been considering creating a Timeline 
chart of firmware releases with clickable items going to the corresponding 
release notes that are already in the TiddlyWiki.

It seems that some people are wanting to dynamically analyse their 
TiddlyWiki and visualise aspects of it? I don't know if this helps, but the 
following worked to have data produced in a macro:

\define test()
['Year','Sales','Expenses'],['2004',1000,400],['2005',1170,460],['2006',660,1120],['2007',1030,540],
\end
<>' title:'Company Data' chart:'AreaChart' 
options:"hAxis:{title:'Year',titleTextStyle:{color:'#333'}},vAxis:{XminValue:0}">>

And if the tiddler has a field called "chartdata" with the value 
"['Year','Sales','Expenses'],['2004',1000,400],['2005',1170,460],['2006',660,1120],['2007',1030,540],",
 
then the following also works:

<>

Cheers,
Andrew

On Sunday, 17 July 2022 at 5:28:16 am UTC+8 cj.v...@gmail.com wrote:

> Well, Andrew has taken my initial prototype  (related discussion linked in 
> Andrew's OP)  further along.
>
> He's done some good stuff there, but organized differently than the 
> direction I was heading.
>
> I'll make suggestions as best I can, but some could require 
> changes/additions Andrew or somebody else needs to make.
>
> On Saturday, July 16, 2022 at 6:06:38 PM UTC-3 arunn...@gmail.com wrote:
>
>> Thanks Charlie. I need a similar chart for my budget wiki. 
>>  Will ask for your help, 
>> once I have a solid idea about the implementation.
>>
>> On Sunday, July 17, 2022 at 12:28:59 AM UTC+5:30 cj.v...@gmail.com wrote:
>>
>>> G'day Arun,
>>>
>>> I have not looked at how Andrew has set things up, but I did look at the 
>>> data source for his pie chart.
>>>
>>> You should be able to do something similar to what I have done with my 
>>> project (i.e. provide a data tiddler that dynamically puts together the 
>>> data), a bit like in these screenshots from my project:
>>>
>>> [image: Screenshot 2022-07-16 3.54.09 PM.png]
>>> [image: Screenshot 2022-07-16 3.54.27 PM.png]
>>>
>>> [image: Screenshot 2022-07-16 3.54.56 PM.png]
>>> On Friday, July 15, 2022 at 6:03:03 PM UTC-3 arunn...@gmail.com wrote:
>>>
 Hi Andrew,

 This looks interesting. Is there a way to extract the tiddler field 
 values for charts instead of manually typing the data .

 Thanks,
 Arun
 On Saturday, July 9, 2022 at 12:52:54 PM UTC+5:30 andrewg_oz wrote:

> Hi Springer,
>
> Dropbox was working, but it was because I was logged in. Logging out 
> just shows code for me too. I shouldn't have been so lazy to not use my 
> own 
> hosting (it's just been a while since I used it):
>
> http://www.scss.com.au/family/andrew/tiddlywiki/GoogleCharts.html
>
> Now with more examples of selection handling and data transclusion!
>
> On Monday, 4 July 2022 at 12:05:03 am UTC+8 springer wrote:
>
>> Andrew,
>>
>> This is quite beautiful! I haven't tried to work with it, but I can 
>> imagine many uses for such graphs. Thanks for taking the time to set up 
>> a 
>> sample site with so many examples!
>>
>> If you have a tiddlyhost account, might you post a version there, so 
>> that this thread can offer a pointer that doesn't require a download? 
>> (Your 
>> wording suggests you expected the graphs could be "quickly seen" without 
>> downloading, but the dropbox link just yields the html file.)
>>
>> -Springer
>> On Saturday, July 2, 2022 at 5:51:52 AM UTC-4 andrewg_oz wrote:
>>
>>> I recently needed some way to get a line graph in one of my 
>>> TiddlyWikis. I found a plugin, but it didn't do a very good job. I 
>>> thought 
>>> it might be possible to use Google Charts, but I had no idea how I 
>>> might go 
>>> about doing that.
>>>
>>> A bit of searching located this post from last year:
>>>
>>> https://groups.google.com/g/tiddlywiki/c/kyfKmMGpZiQ/m/TeQNhDTNBQAJ
>>>
>>> This works, but has a lot of hard-coded stuff. I wanted something 
>>> more flexible.
>>>
>>> Using that post as the starting point, I've come up with a single 
>>> macro that uses separate tiddlers to hold the chart data. I have an 
>>> exampl

[tw5] Re: Google Charts in TiddlyWiki

2022-07-16 Thread Charlie Veniot
Well, Andrew has taken my initial prototype  (related discussion linked in 
Andrew's OP)  further along.

He's done some good stuff there, but organized differently than the 
direction I was heading.

I'll make suggestions as best I can, but some could require 
changes/additions Andrew or somebody else needs to make.

On Saturday, July 16, 2022 at 6:06:38 PM UTC-3 arunn...@gmail.com wrote:

> Thanks Charlie. I need a similar chart for my budget wiki. 
>  Will ask for your help, 
> once I have a solid idea about the implementation.
>
> On Sunday, July 17, 2022 at 12:28:59 AM UTC+5:30 cj.v...@gmail.com wrote:
>
>> G'day Arun,
>>
>> I have not looked at how Andrew has set things up, but I did look at the 
>> data source for his pie chart.
>>
>> You should be able to do something similar to what I have done with my 
>> project (i.e. provide a data tiddler that dynamically puts together the 
>> data), a bit like in these screenshots from my project:
>>
>> [image: Screenshot 2022-07-16 3.54.09 PM.png]
>> [image: Screenshot 2022-07-16 3.54.27 PM.png]
>>
>> [image: Screenshot 2022-07-16 3.54.56 PM.png]
>> On Friday, July 15, 2022 at 6:03:03 PM UTC-3 arunn...@gmail.com wrote:
>>
>>> Hi Andrew,
>>>
>>> This looks interesting. Is there a way to extract the tiddler field 
>>> values for charts instead of manually typing the data .
>>>
>>> Thanks,
>>> Arun
>>> On Saturday, July 9, 2022 at 12:52:54 PM UTC+5:30 andrewg_oz wrote:
>>>
 Hi Springer,

 Dropbox was working, but it was because I was logged in. Logging out 
 just shows code for me too. I shouldn't have been so lazy to not use my 
 own 
 hosting (it's just been a while since I used it):

 http://www.scss.com.au/family/andrew/tiddlywiki/GoogleCharts.html

 Now with more examples of selection handling and data transclusion!

 On Monday, 4 July 2022 at 12:05:03 am UTC+8 springer wrote:

> Andrew,
>
> This is quite beautiful! I haven't tried to work with it, but I can 
> imagine many uses for such graphs. Thanks for taking the time to set up a 
> sample site with so many examples!
>
> If you have a tiddlyhost account, might you post a version there, so 
> that this thread can offer a pointer that doesn't require a download? 
> (Your 
> wording suggests you expected the graphs could be "quickly seen" without 
> downloading, but the dropbox link just yields the html file.)
>
> -Springer
> On Saturday, July 2, 2022 at 5:51:52 AM UTC-4 andrewg_oz wrote:
>
>> I recently needed some way to get a line graph in one of my 
>> TiddlyWikis. I found a plugin, but it didn't do a very good job. I 
>> thought 
>> it might be possible to use Google Charts, but I had no idea how I might 
>> go 
>> about doing that.
>>
>> A bit of searching located this post from last year:
>>
>> https://groups.google.com/g/tiddlywiki/c/kyfKmMGpZiQ/m/TeQNhDTNBQAJ
>>
>> This works, but has a lot of hard-coded stuff. I wanted something 
>> more flexible.
>>
>> Using that post as the starting point, I've come up with a single 
>> macro that uses separate tiddlers to hold the chart data. I have an 
>> example 
>> TiddlyWiki on my Dropbox:
>>
>> https://www.dropbox.com/s/px91n007zzdp8df/GoogleCharts.html?dl=0
>>
>> All the magic is in the "GoogleChart" macro.
>>
>> You can quickly see the demo charts, but it will need to be 
>> downloaded to see 'behind the scenes'.
>>
>> I got this far mostly by trying random tiddlywiki syntax until things 
>> worked. I'm not familiar with macros at all. I'd welcome any feedback on 
>> how I've done things.
>>
>> Apart from that - do whatever you like with it!
>>
>> Cheers,
>> Andrew
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4bf51780-b3f5-4614-a57d-8df26cd47821n%40googlegroups.com.


[tw5] Re: Google Charts in TiddlyWiki

2022-07-16 Thread arun babu
Thanks Charlie. I need a similar chart for my budget wiki. 
 Will ask for your help, once 
I have a solid idea about the implementation.

On Sunday, July 17, 2022 at 12:28:59 AM UTC+5:30 cj.v...@gmail.com wrote:

> G'day Arun,
>
> I have not looked at how Andrew has set things up, but I did look at the 
> data source for his pie chart.
>
> You should be able to do something similar to what I have done with my 
> project (i.e. provide a data tiddler that dynamically puts together the 
> data), a bit like in these screenshots from my project:
>
> [image: Screenshot 2022-07-16 3.54.09 PM.png]
> [image: Screenshot 2022-07-16 3.54.27 PM.png]
>
> [image: Screenshot 2022-07-16 3.54.56 PM.png]
> On Friday, July 15, 2022 at 6:03:03 PM UTC-3 arunn...@gmail.com wrote:
>
>> Hi Andrew,
>>
>> This looks interesting. Is there a way to extract the tiddler field 
>> values for charts instead of manually typing the data .
>>
>> Thanks,
>> Arun
>> On Saturday, July 9, 2022 at 12:52:54 PM UTC+5:30 andrewg_oz wrote:
>>
>>> Hi Springer,
>>>
>>> Dropbox was working, but it was because I was logged in. Logging out 
>>> just shows code for me too. I shouldn't have been so lazy to not use my own 
>>> hosting (it's just been a while since I used it):
>>>
>>> http://www.scss.com.au/family/andrew/tiddlywiki/GoogleCharts.html
>>>
>>> Now with more examples of selection handling and data transclusion!
>>>
>>> On Monday, 4 July 2022 at 12:05:03 am UTC+8 springer wrote:
>>>
 Andrew,

 This is quite beautiful! I haven't tried to work with it, but I can 
 imagine many uses for such graphs. Thanks for taking the time to set up a 
 sample site with so many examples!

 If you have a tiddlyhost account, might you post a version there, so 
 that this thread can offer a pointer that doesn't require a download? 
 (Your 
 wording suggests you expected the graphs could be "quickly seen" without 
 downloading, but the dropbox link just yields the html file.)

 -Springer
 On Saturday, July 2, 2022 at 5:51:52 AM UTC-4 andrewg_oz wrote:

> I recently needed some way to get a line graph in one of my 
> TiddlyWikis. I found a plugin, but it didn't do a very good job. I 
> thought 
> it might be possible to use Google Charts, but I had no idea how I might 
> go 
> about doing that.
>
> A bit of searching located this post from last year:
>
> https://groups.google.com/g/tiddlywiki/c/kyfKmMGpZiQ/m/TeQNhDTNBQAJ
>
> This works, but has a lot of hard-coded stuff. I wanted something more 
> flexible.
>
> Using that post as the starting point, I've come up with a single 
> macro that uses separate tiddlers to hold the chart data. I have an 
> example 
> TiddlyWiki on my Dropbox:
>
> https://www.dropbox.com/s/px91n007zzdp8df/GoogleCharts.html?dl=0
>
> All the magic is in the "GoogleChart" macro.
>
> You can quickly see the demo charts, but it will need to be downloaded 
> to see 'behind the scenes'.
>
> I got this far mostly by trying random tiddlywiki syntax until things 
> worked. I'm not familiar with macros at all. I'd welcome any feedback on 
> how I've done things.
>
> Apart from that - do whatever you like with it!
>
> Cheers,
> Andrew
>


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9d67c893-b448-433c-9068-cc3105eaaeben%40googlegroups.com.


[tw5] Re: Google Charts in TiddlyWiki

2022-07-15 Thread arun babu
Hi Andrew,

This looks interesting. Is there a way to extract the tiddler field values 
for charts instead of manually typing the data .

Thanks,
Arun
On Saturday, July 9, 2022 at 12:52:54 PM UTC+5:30 andrewg_oz wrote:

> Hi Springer,
>
> Dropbox was working, but it was because I was logged in. Logging out just 
> shows code for me too. I shouldn't have been so lazy to not use my own 
> hosting (it's just been a while since I used it):
>
> http://www.scss.com.au/family/andrew/tiddlywiki/GoogleCharts.html
>
> Now with more examples of selection handling and data transclusion!
>
> On Monday, 4 July 2022 at 12:05:03 am UTC+8 springer wrote:
>
>> Andrew,
>>
>> This is quite beautiful! I haven't tried to work with it, but I can 
>> imagine many uses for such graphs. Thanks for taking the time to set up a 
>> sample site with so many examples!
>>
>> If you have a tiddlyhost account, might you post a version there, so that 
>> this thread can offer a pointer that doesn't require a download? (Your 
>> wording suggests you expected the graphs could be "quickly seen" without 
>> downloading, but the dropbox link just yields the html file.)
>>
>> -Springer
>> On Saturday, July 2, 2022 at 5:51:52 AM UTC-4 andrewg_oz wrote:
>>
>>> I recently needed some way to get a line graph in one of my TiddlyWikis. 
>>> I found a plugin, but it didn't do a very good job. I thought it might be 
>>> possible to use Google Charts, but I had no idea how I might go about doing 
>>> that.
>>>
>>> A bit of searching located this post from last year:
>>>
>>> https://groups.google.com/g/tiddlywiki/c/kyfKmMGpZiQ/m/TeQNhDTNBQAJ
>>>
>>> This works, but has a lot of hard-coded stuff. I wanted something more 
>>> flexible.
>>>
>>> Using that post as the starting point, I've come up with a single macro 
>>> that uses separate tiddlers to hold the chart data. I have an example 
>>> TiddlyWiki on my Dropbox:
>>>
>>> https://www.dropbox.com/s/px91n007zzdp8df/GoogleCharts.html?dl=0
>>>
>>> All the magic is in the "GoogleChart" macro.
>>>
>>> You can quickly see the demo charts, but it will need to be downloaded 
>>> to see 'behind the scenes'.
>>>
>>> I got this far mostly by trying random tiddlywiki syntax until things 
>>> worked. I'm not familiar with macros at all. I'd welcome any feedback on 
>>> how I've done things.
>>>
>>> Apart from that - do whatever you like with it!
>>>
>>> Cheers,
>>> Andrew
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4475b2be-67bc-44a4-a13b-520f8297fa74n%40googlegroups.com.


[tw5] Re: Google Charts in TiddlyWiki

2022-07-09 Thread andrewg_oz
Hi Springer,

Dropbox was working, but it was because I was logged in. Logging out just 
shows code for me too. I shouldn't have been so lazy to not use my own 
hosting (it's just been a while since I used it):

http://www.scss.com.au/family/andrew/tiddlywiki/GoogleCharts.html

Now with more examples of selection handling and data transclusion!

On Monday, 4 July 2022 at 12:05:03 am UTC+8 springer wrote:

> Andrew,
>
> This is quite beautiful! I haven't tried to work with it, but I can 
> imagine many uses for such graphs. Thanks for taking the time to set up a 
> sample site with so many examples!
>
> If you have a tiddlyhost account, might you post a version there, so that 
> this thread can offer a pointer that doesn't require a download? (Your 
> wording suggests you expected the graphs could be "quickly seen" without 
> downloading, but the dropbox link just yields the html file.)
>
> -Springer
> On Saturday, July 2, 2022 at 5:51:52 AM UTC-4 andrewg_oz wrote:
>
>> I recently needed some way to get a line graph in one of my TiddlyWikis. 
>> I found a plugin, but it didn't do a very good job. I thought it might be 
>> possible to use Google Charts, but I had no idea how I might go about doing 
>> that.
>>
>> A bit of searching located this post from last year:
>>
>> https://groups.google.com/g/tiddlywiki/c/kyfKmMGpZiQ/m/TeQNhDTNBQAJ
>>
>> This works, but has a lot of hard-coded stuff. I wanted something more 
>> flexible.
>>
>> Using that post as the starting point, I've come up with a single macro 
>> that uses separate tiddlers to hold the chart data. I have an example 
>> TiddlyWiki on my Dropbox:
>>
>> https://www.dropbox.com/s/px91n007zzdp8df/GoogleCharts.html?dl=0
>>
>> All the magic is in the "GoogleChart" macro.
>>
>> You can quickly see the demo charts, but it will need to be downloaded to 
>> see 'behind the scenes'.
>>
>> I got this far mostly by trying random tiddlywiki syntax until things 
>> worked. I'm not familiar with macros at all. I'd welcome any feedback on 
>> how I've done things.
>>
>> Apart from that - do whatever you like with it!
>>
>> Cheers,
>> Andrew
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/59fff918-4da0-4fdf-b26c-92311ece4727n%40googlegroups.com.


[tw5] Re: Google Charts in TiddlyWiki

2022-07-03 Thread springer
Andrew,

This is quite beautiful! I haven't tried to work with it, but I can imagine 
many uses for such graphs. Thanks for taking the time to set up a sample 
site with so many examples!

If you have a tiddlyhost account, might you post a version there, so that 
this thread can offer a pointer that doesn't require a download? (Your 
wording suggests you expected the graphs could be "quickly seen" without 
downloading, but the dropbox link just yields the html file.)

-Springer
On Saturday, July 2, 2022 at 5:51:52 AM UTC-4 andrewg_oz wrote:

> I recently needed some way to get a line graph in one of my TiddlyWikis. I 
> found a plugin, but it didn't do a very good job. I thought it might be 
> possible to use Google Charts, but I had no idea how I might go about doing 
> that.
>
> A bit of searching located this post from last year:
>
> https://groups.google.com/g/tiddlywiki/c/kyfKmMGpZiQ/m/TeQNhDTNBQAJ
>
> This works, but has a lot of hard-coded stuff. I wanted something more 
> flexible.
>
> Using that post as the starting point, I've come up with a single macro 
> that uses separate tiddlers to hold the chart data. I have an example 
> TiddlyWiki on my Dropbox:
>
> https://www.dropbox.com/s/px91n007zzdp8df/GoogleCharts.html?dl=0
>
> All the magic is in the "GoogleChart" macro.
>
> You can quickly see the demo charts, but it will need to be downloaded to 
> see 'behind the scenes'.
>
> I got this far mostly by trying random tiddlywiki syntax until things 
> worked. I'm not familiar with macros at all. I'd welcome any feedback on 
> how I've done things.
>
> Apart from that - do whatever you like with it!
>
> Cheers,
> Andrew
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7629475b-959e-45e7-ac5e-d5559f43e2can%40googlegroups.com.