colocar iframe no aplicativo android

Estou tentando colocar meu gráfico de iframe que tirei da minha conta do thingspeak.

Esta é a string que eu preciso colocar (tirei do thingspeak):

<iframe width="450" height="260" style="border: 1px solid #cccccc;" src="http://api.thingspeak.com/channels/31592/charts/1?width=450&height=260&results=60&dynamic=true" ></iframe>

isso que eu uso na minha atividade:

 WebView webview;
    webview = (WebView) findViewById(R.id.webview);
    webview.getSettings().setJavaScriptEnabled(true);
    webview.loadData();

Tento, sem sucesso, colocar minha string iframe na função "loadData".

Obrigado aos ajudantes;)

questionAnswers(3)

yourAnswerToTheQuestion